-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "petstore-client",
"version": "0.0.0",
"description": "Petstore Client",
"type": "module",
"engines": {
"node": ">= 18.12 <19"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "~29.2.6",
"@types/node": "~18.15.11",
"@typescript-eslint/eslint-plugin": "~5.44.0",
"@typescript-eslint/parser": "~5.44.0",
"eslint": "~8.28.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-jest": "~27.1.7",
"jest": "~29.3.1",
"prettier": "~2.8.7",
"rimraf": "~3.0.2",
"ts-jest": "~29.0.5",
"tsutils": "~3.21.0",
"typescript": "~4.9.5"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --verbose",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"fast-xml-parser": "^4.1.3",
"node-fetch": "^3.3.1",
"ts-pattern": "^4.2.2",
"tslib": "~2.4.1",
"zod": "^3.21.4"
},
"volta": {
"node": "18.12.1"
}
}