-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
41
42
43
44
45
46
47
48
{
"name": "graphql-sw-api",
"version": "1.0.0",
"description": "GraphQL Server",
"main": "src/index.js",
"scripts": {
"start": "node lib/index.js",
"server": "nodemon src/index.js --exec babel-node",
"test": "mocha --compilers js:babel-register",
"build": "babel src -d lib",
"prepublish": "npm run build",
"update-schema": "babel-node ./scripts/updateSchema.js"
},
"keywords": [
"graphql",
"nodejs",
"koa"
],
"author": {
"name": "Joao Marins",
"email": "[email protected]",
"url": "https://github.com/jgcmarins"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"graphiql": "^0.10.2",
"graphql": "^0.9.6",
"graphql-relay": "^0.5.2",
"koa": "^2.2.0",
"koa-graphql": "^0.7.0",
"node-fetch": "^1.7.0"
},
"optionalDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.9.0",
"nodemon": "^1.11.0"
},
"directories": {
"test": "test"
}
}