forked from BenLorantfy/nestjs-zod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "nestjs-zod",
"description": "All NestJS + Zod utilities you need",
"version": "0.0.0-set-by-ci",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./z": {
"import": "./dist/z.mjs",
"default": "./dist/z.js"
},
"./frontend": {
"import": "./dist/frontend.mjs",
"default": "./dist/frontend.js"
},
"./dto": {
"import": "./dist/dto.mjs",
"default": "./dist/dto.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"z.d.ts",
"frontend.d.ts",
"dto.d.ts"
],
"sideEffects": false,
"license": "MIT",
"repository": "git@github.com:risenforces/nestjs-zod.git",
"author": "Evgeny Zakharov <to@risen.dev>",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "rollup -c",
"test": "jest",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --ext .ts,.tsx src --fix"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.3.3",
"@nestjs/common": "8.0.0",
"@nestjs/core": "8.0.0",
"@nestjs/swagger": "^5.2.1",
"@types/jest": "^26.0.14",
"@types/merge-deep": "^3.0.0",
"esbuild": "^0.14.24",
"eslint": "^8.18.0",
"eslint-kit": "^5.7.0",
"jest": "^28.1.0",
"reflect-metadata": "^0.1.13",
"rollup": "^2.69.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-terser": "^7.0.2",
"rxjs": "^7.5.5",
"ts-jest": "^28.0.2",
"typescript": "4.6.3",
"zod": "3.14.3"
},
"peerDependencies": {
"@nestjs/common": ">= 8.0.0",
"@nestjs/core": ">= 8.0.0",
"@nestjs/swagger": ">= 5.0.0",
"zod": ">= 3.14.3"
},
"peerDependenciesMeta": {
"@nestjs/common": {
"optional": true
},
"@nestjs/core": {
"optional": true
},
"@nestjs/swagger": {
"optional": true
},
"zod": {
"optional": false
}
},
"dependencies": {
"merge-deep": "^3.0.3"
}
}