forked from anatine/zod-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.53 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
{
"name": "zod-plugins",
"version": "5.0.0",
"license": "MIT",
"private": false,
"description": "A collection of plugins for the Zod framework.",
"author": {
"name": "Brian McBride",
"url": "https://www.linkedin.com/in/brianmcbride"
},
"scripts": {
"test": "jest",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"affected:version": "nx affected --parallel=1 --base=last-release --target=version",
"preaffected:version": "npm run affected:build",
"affected:build": "nx affected:build",
"affected:publish": "nx affected --target=publish",
"affected:github": "nx affected --parallel=1 --target=github"
},
"dependencies": {
"@graphql-codegen/plugin-helpers": "^2.7.1",
"@graphql-codegen/schema-ast": "^2.6.0",
"@graphql-codegen/visitor-plugin-common": "^2.13.5",
"@graphql-tools/utils": "^8.12.0",
"randexp": "^0.5.3",
"ts-deepmerge": "^4.0.0",
"tslib": "^2.4.1"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@graphql-codegen/cli": "^2.16.1",
"@graphql-codegen/typescript": "^2.8.5",
"@graphql-codegen/typescript-operations": "^2.5.10",
"@jscutlery/semver": "^2.29.2",
"@nestjs/common": "9.2.1",
"@nestjs/core": "9.2.1",
"@nestjs/platform-express": "9.2.1",
"@nestjs/schematics": "9.0.3",
"@nestjs/swagger": "6.1.4",
"@nestjs/testing": "9.2.1",
"@nrwl/cli": "15.3.3",
"@nrwl/eslint-plugin-nx": "15.3.3",
"@nrwl/jest": "15.3.3",
"@nrwl/js": "15.3.3",
"@nrwl/linter": "15.3.3",
"@nrwl/nest": "15.3.3",
"@nrwl/node": "15.3.3",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/workspace": "15.3.3",
"@swc/core": "^1.3.22",
"@swc/jest": "0.2.24",
"@types/isomorphic-form-data": "^2.0.1",
"@types/jest": "28.1.8",
"@types/node": "18.11.13",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.10",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/experimental-utils": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"dotenv": "16.0.3",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"graphql": "^16.6.0",
"jest": "28.1.3",
"ngx-deploy-npm": "^4.3.10",
"nx": "15.3.3",
"openapi3-ts": "^3.1.2",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"tslib": "^2.4.1",
"typescript": "4.9.4",
"validator": "^13.7.0",
"zod": "^3.20.1"
},
"workspaces": [
"packages/**"
]
}