-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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
{
"name": "@xxskyy/mercurius-exec-service-schema",
"version": "3.0.2",
"description": "Make executable schema that suppports federation mode in Mercurius",
"author": {
"name": "xxSkyy",
"url": "https://github.com/xxSkyy"
},
"repository": {
"url": "https://github.com/xxSkyy/mercurius-exec-service-schema"
},
"homepage": "https://github.com/xxSkyy/mercurius-exec-service-schema",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "install-peers",
"test:coverage": "nyc yarn test",
"test": "NODE_ENV=test mocha -r ts-node/register src/**/*.spec.ts",
"test:dev": "mocha -r ts-node/register src/**/*.spec.ts --watch-extensions ts --watch --watch-files src 'src/**/**.ts'"
},
"keywords": [
"mercurius",
"federation",
"gateway",
"executable",
"schema",
"fastify",
"graphql"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/redis": "^4.0.11",
"@types/sinon": "^10.0.11",
"chai": "^4.3.6",
"fastify": "^3.27.4",
"install-peers-cli": "^2.2.0",
"mercurius": "^9.3.6",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@apollo/subgraph": "^0.4.0",
"@graphql-tools/graphql-file-loader": "^7.3.7",
"@graphql-tools/load": "^7.5.6"
},
"peerDependencies": {
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6"
}
}