-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 888 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
35
{
"name": "hands-on-graphql",
"version": "1.0.0",
"description": "Build your first graphQL runtime step by step !",
"main": "index.js",
"scripts": {
"watch": "nodemon $NODE_DEBUG_OPTION server.js --harmony",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charesbast/hands-on-graphql.git"
},
"keywords": [
"graphql",
"runtime"
],
"author": "Bastien Charès",
"license": "MIT",
"bugs": {
"url": "https://github.com/charesbast/hands-on-graphql/issues"
},
"homepage": "https://github.com/charesbast/hands-on-graphql#readme",
"dependencies": {
"express": "^4.16.0",
"express-graphql": "^0.6.11",
"graphql": "^0.11.4",
"lodash": "^4.17.4",
"lokijs": "^1.5.1"
},
"devDependencies": {
"eslint": "^4.7.2",
"nodemon": "^1.12.1"
}
}