-
Notifications
You must be signed in to change notification settings - Fork 425
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 KB
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
{
"name": "@nestjs/mercurius",
"version": "13.2.4",
"description": "Nest - modern, fast, powerful node.js web framework (@graphql)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs/graphql.git"
},
"scripts": {
"test:e2e": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --config ./tests/jest-e2e.ts --runInBand",
"test:e2e:dev": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --config ./tests/jest-e2e.ts --runInBand --watch"
},
"bugs": {
"url": "https://github.com/nestjs/graphql/issues"
},
"dependencies": {
"tslib": "2.8.1"
},
"devDependencies": {
"@mercuriusjs/federation": "5.1.1",
"@mercuriusjs/gateway": "5.2.0",
"@nestjs/common": "11.1.17",
"@nestjs/platform-fastify": "11.1.17",
"@nestjs/testing": "11.1.17",
"fastify": "5.8.4",
"mercurius": "16.8.0",
"mercurius-integration-testing": "9.0.1"
},
"peerDependencies": {
"@apollo/subgraph": "^2.0.0",
"@mercuriusjs/federation": "^5.0.0",
"@mercuriusjs/gateway": "^5.0.0",
"@nestjs/common": "^11.0.1",
"@nestjs/graphql": "^13.0.0",
"fastify": "^5.2.1",
"graphql": "^16.10.0",
"mercurius": "^16.0.1"
},
"peerDependenciesMeta": {
"@apollo/subgraph": {
"optional": true
},
"@mercuriusjs/gateway": {
"optional": true
},
"@mercuriusjs/federation": {
"optional": true
}
}
}