-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 765 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 765 Bytes
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
{
"name": "api-graphql",
"version": "1.0.0",
"description": "api graphQL school",
"main": "server.js",
"scripts": {
"start": "babel-node server.js",
"debug": "set ENV=development&&babel-node --inspect server.js ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "zerocool",
"license": "MIT",
"dependencies": {
"apollo-engine": "^0.9.1",
"apollo-server-express": "^1.3.2",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"dataloader": "^1.4.0",
"express": "^4.16.2",
"graphql": "^0.13.1",
"graphql-tools": "^2.21.0",
"mongoose": "^4.13.2"
},
"devDependencies": {
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}
}