-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
86 lines (85 loc) · 2.57 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
{
"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": "^4.2.0",
"@graphql-codegen/schema-ast": "^3.0.1",
"@graphql-codegen/visitor-plugin-common": "^3.1.1",
"@graphql-tools/utils": "^10.0.1",
"axios": "^1.4.0",
"randexp": "^0.5.3",
"ts-deepmerge": "^6.1.0",
"tslib": "^2.6.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@jscutlery/semver": "^3.0.0",
"@nestjs/common": "10.0.4",
"@nestjs/core": "10.0.4",
"@nestjs/platform-express": "10.0.4",
"@nestjs/schematics": "10.0.1",
"@nestjs/swagger": "7.0.12",
"@nestjs/testing": "10.0.4",
"@nx/eslint-plugin": "16.4.1",
"@nx/jest": "16.4.1",
"@nx/js": "16.4.1",
"@nx/linter": "16.4.1",
"@nx/nest": "16.4.1",
"@nx/node": "16.4.1",
"@nx/webpack": "16.4.1",
"@nx/workspace": "16.4.1",
"@swc/core": "^1.3.67",
"@swc/jest": "0.2.26",
"@types/isomorphic-form-data": "^2.0.1",
"@types/jest": "29.5.2",
"@types/node": "20.3.2",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.17",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/experimental-utils": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"dotenv": "16.3.1",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"graphql": "^16.7.1",
"jest": "29.5.0",
"jest-environment-node": "^29.5.0",
"ngx-deploy-npm": "8.0.0",
"nx": "16.4.1",
"nx-cloud": "16.0.5",
"openapi3-ts": "^4.1.2",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tslib": "^2.6.0",
"typescript": "5.1.6",
"validator": "^13.9.0",
"zod": "^3.22.4"
},
"workspaces": [
"packages/**"
]
}