-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "graphql-component",
"version": "5.0.1",
"description": "Build, customize and compose GraphQL schemas in a componentized fashion",
"keywords": [
"graphql",
"schema-stitching",
"composition",
"module",
"component"
],
"main": "lib/index.js",
"scripts": {
"test": "tape lib/*/**/__tests__.js lib/__tests__.js",
"start-composition": "DEBUG=graphql-component:* node examples/composition/server/index.js",
"start-federation": "DEBUG=graphql-component:* node examples/federation/run-federation-example.js",
"lint": "eslint lib",
"cover": "nyc npm test"
},
"author": "Trevor Livingston <tlivings@gmail.com>",
"repository": "https://github.com/ExpediaGroup/graphql-component",
"license": "MIT",
"dependencies": {
"@apollo/federation": "^0.38.1",
"@graphql-tools/delegate": "^8.8.1",
"@graphql-tools/merge": "^8.3.1",
"@graphql-tools/mock": "^8.7.1",
"@graphql-tools/schema": "^8.5.1",
"@graphql-tools/stitch": "^8.7.1",
"@graphql-tools/utils": "^8.6.10",
"@graphql-tools/wrap": "^8.5.1",
"debug": "^4.3.1"
},
"peerDependencies": {
"graphql": "^16.0.0"
},
"devDependencies": {
"@apollo/gateway": "^2.7.1",
"apollo-server": "^3.13.0",
"casual": "^1.6.0",
"eslint": "^6.5.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.4",
"nyc": "^14.1.1",
"sinon": "^12.0.1",
"tape": "^4.9.1"
}
}