-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "fun-with-graphql-schema-stitching",
"version": "0.0.0",
"main": "index.js",
"license": "none",
"scripts": {
"start-gateway": "nodemon index.js",
"start": "concurrently \"yarn:start-*\"",
"relay": "relay-compiler"
},
"dependencies": {
"@graphql-tools/delegate": "^8.2.1",
"@graphql-tools/schema": "^8.2.0",
"@graphql-tools/stitch": "^8.3.1",
"@graphql-tools/utils": "^8.3.0",
"@graphql-tools/wrap": "^8.3.0",
"concurrently": "^5.3.0",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^16.5.0",
"graphql-depth-limit": "^1.1.0",
"graphql-playground": "^1.3.17",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-relay": "^0.10.0",
"graphql-scalars": "^1.17.0",
"nodemon": "^2.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-relay": "^14.0.0",
"relay-runtime": "^14.0.0",
"wait-on": "^5.2.1"
},
"devDependencies": {
"@graphql-tools/relay-operation-optimizer": "6.4.14",
"babel-plugin-relay": "^14.0.0",
"relay-compiler": "^14.0.0"
}
}