-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "@softwarehutpl/express-zod-decorators",
"version": "0.0.4",
"type": "module",
"repository": "https://github.com/softwarehutpl/express-zod-decorators.git",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"start": "npm run start --prefix ./examples",
"build": "vite build",
"jest": "jest",
"test": "start-server-and-test start http://localhost:3000 jest"
},
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"reflect-metadata": "^0.1.13",
"zod": "^3.20.6"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/supertest": "^2.0.12",
"jest": "^29.4.3",
"start-server-and-test": "^2.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}