-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1008 Bytes
/
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
{
"name": "graphql-demo",
"version": "1.0.0",
"description": "GraphQL demo to understand how it works and how to set up a GraphQL server",
"main": "dist/server.js",
"scripts": {
"dev": "npm-run-all --parallel fake-api babel-node",
"babel-node": "nodemon --exec babel-node -- src/server.js --inspect",
"start": "npm-run-all --parallel fake-api serve",
"serve": "node dist/server.js",
"build": "babel src --out-dir dist",
"fake-api": "json-server -p 5000 --watch db.json"
},
"keywords": [],
"author": "Paul-Adrien Bru",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"nodemon": "^1.14.12",
"npm-run-all": "^4.1.2"
},
"dependencies": {
"apollo-server-express": "^1.3.2",
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"dataloader": "^1.4.0",
"express": "^4.16.2",
"graphql": "^0.13.0",
"graphql-tools": "^2.21.0",
"json-server": "^0.12.1",
"lodash": "^4.17.5"
}
}