-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "graphql-training",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "nodemon src/server.js",
"start-react": "PORT=3001 react-scripts start"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.0",
"apollo-client": "^2.0.2",
"apollo-link-http": "^1.1.0",
"apollo-link-ws": "^1.0.1",
"apollo-server-express": "^1.2.0",
"apollo-utilities": "^1.0.2",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dataloader": "^1.3.0",
"express": "^4.16.2",
"graphql": "^0.11.7",
"graphql-iso-date": "^3.3.0",
"graphql-subscriptions": "^0.5.5",
"graphql-tag": "^2.5.0",
"graphql-tools": "^2.7.2",
"lodash": "^4.17.4",
"react": "^16.1.1",
"react-apollo": "^2.0.1",
"react-dom": "^16.1.1",
"react-scripts": "^1.0.17",
"subscriptions-transport-ws": "^0.9.1",
"swapi-node": "^0.4.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jest": "^21.2.1",
"nodemon": "^1.12.1"
}
}