-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"private": true,
"type": "module",
"workspaces": [
"express-zod-api",
"example",
"cjs-test",
"esm-test",
"issue952-test"
],
"scripts": {
"start": "yarn workspace example start",
"prebuild": "tsx tools/contributors.ts && tsx tools/license.ts",
"build": "yarn workspace express-zod-api build && yarn workspace example build",
"postbuild": "tsx tools/make-tests.ts",
"test": "yarn workspace express-zod-api test",
"test:example": "yarn workspace example test",
"test:oas": "yarn workspace example validate",
"test:cjs": "yarn workspace cjs-test test",
"test:esm": "yarn workspace esm-test test",
"test:952": "yarn workspace issue952-test test",
"bench": "yarn workspace express-zod-api bench",
"lint": "eslint && prettier *.md --check",
"mdfix": "prettier *.md --write",
"precommit": "yarn lint && yarn test && yarn build && git add *.md example/example.* LICENSE",
"install_hooks": "husky"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/compression": "^1.7.5",
"@types/http-errors": "^2.0.2",
"@types/express": "^5.0.0",
"@types/express-fileupload": "^1.5.0",
"@types/node": "^22.0.0",
"@typescript-eslint/rule-tester": "^8.15.0",
"@vitest/coverage-v8": "^3.0.5",
"compression": "^1.7.4",
"eslint": "^9.3.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-allowed-dependencies": "^1.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^56.0.0",
"express": "^5.0.0",
"express-fileupload": "^1.5.0",
"http-errors": "^2.0.0",
"husky": "^9.0.5",
"prettier": "3.5.0",
"tsx": "^4.19.2",
"typescript": "^5.5.2",
"typescript-eslint": "^8.15.0",
"vitest": "^3.0.5",
"zod": "^3.23.0"
},
"resolutions": {
"**/@scarf/scarf": "npm:[email protected]"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}