forked from ExpediaGroup/graphql-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "graphql-component",
"version": "2.1.5",
"description": "Build graphql schema with components",
"keywords": [
"graphql",
"schema-stitching",
"composition",
"module",
"component"
],
"main": "lib/index.js",
"scripts": {
"test": "tape lib/*/**/__tests__.js lib/__tests__.js",
"start": "DEBUG=graphql-component:* node examples/composition/server/index.js",
"start-mock": "DEBUG=graphql-component:* GRAPHQL_MOCK=1 node examples/composition/server/index.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.20.4",
"cuid": "^2.1.8",
"debug": "^4.1.1",
"graphql-tools": "^6.0.10",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"peerDependencies": {
"graphql": "^14.0.0"
},
"devDependencies": {
"@apollo/gateway": "^0.10.8",
"apollo-server": "^2.13.1",
"casual": "^1.6.0",
"eslint": "^6.5.1",
"graphql": "^14.0.0 ",
"graphql-tag": "^2.10.3",
"nyc": "^14.1.1",
"tape": "^4.9.1"
}
}