-
Notifications
You must be signed in to change notification settings - Fork 396
/
package.json
129 lines (129 loc) · 3.71 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@nestjs/graphql",
"version": "9.0.6",
"description": "Nest - modern, fast, powerful node.js web framework (@graphql)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:integration": "jest --config ./tests/jest-e2e.json --runInBand",
"test:integration:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
"prerelease": "npm run build",
"release": "release-it"
},
"devDependencies": {
"@apollo/federation": "0.33.0",
"@apollo/gateway": "0.42.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-angular": "13.2.0",
"@nestjs/common": "8.0.11",
"@nestjs/core": "8.0.11",
"@nestjs/platform-express": "8.0.11",
"@nestjs/platform-fastify": "8.0.11",
"@nestjs/testing": "8.0.11",
"@types/graphql": "14.5.0",
"@types/jest": "26.0.24",
"@types/node": "16.6.1",
"@types/node-fetch": "3.0.2",
"@types/normalize-path": "3.0.0",
"@types/ws": "8.2.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link-ws": "1.0.20",
"apollo-server-core": "3.3.0",
"apollo-server-express": "3.3.0",
"apollo-server-fastify": "3.3.0",
"class-transformer": "0.4.0",
"class-validator": "0.13.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"graphql": "15.6.1",
"graphql-subscriptions": "1.2.1",
"husky": "7.0.2",
"jest": "27.2.5",
"lint-staged": "11.2.1",
"prettier": "2.4.1",
"reflect-metadata": "0.1.13",
"release-it": "14.11.6",
"rimraf": "3.0.2",
"rxjs": "7.4.0",
"supertest": "6.1.6",
"ts-jest": "27.0.4",
"ts-morph": "12.0.0",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"dependencies": {
"@graphql-tools/merge": "6.2.5",
"@graphql-tools/schema": "7.1.5",
"@graphql-tools/utils": "7.10.0",
"@nestjs/mapped-types": "1.0.0",
"chokidar": "3.5.2",
"fast-glob": "3.2.7",
"graphql-ws": "5.5.0",
"iterall": "1.3.0",
"lodash": "4.17.21",
"normalize-path": "3.0.0",
"subscriptions-transport-ws": "0.9.19",
"tslib": "2.3.1",
"uuid": "8.3.2",
"ws": "8.2.2"
},
"peerDependencies": {
"@apollo/federation": "^0.26.0 || ^0.27.0 || ^0.29.0 || 0.33.0",
"@apollo/gateway": "^0.29.0 || ^0.32.0 || ^0.33.0 || ^0.35.0 || ^0.38.0 || ^0.42.0",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"apollo-server-core": "^3.0.0",
"apollo-server-express": "^3.1.2",
"apollo-server-fastify": "^3.1.2",
"graphql": "^15.5.1",
"reflect-metadata": "^0.1.13",
"ts-morph": "^11.0.3 || ^12.0.0"
},
"peerDependenciesMeta": {
"@apollo/federation": {
"optional": true
},
"@apollo/gateway": {
"optional": true
},
"apollo-server-core": {
"optional": true
},
"apollo-server-express": {
"optional": true
},
"apollo-server-fastify": {
"optional": true
},
"ts-morph": {
"optional": true
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/graphql"
}
}