-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 784 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 784 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
{
"dependencies": {
"@types/express": "^4.0.33",
"@types/express-graphql": "^0.0.33",
"@types/graphql": "^0.7.3",
"@types/node": "^6.0.47",
"body-parser": "^1.15.2",
"graphql": "^0.8.2",
"koa": "^1.2.4",
"koa-convert": "^1.2.0",
"koa-graphql": "^0.6.0",
"koa-mount": "^1.3.0",
"koa-router": "^5.4.0",
"nodemon": "^2.0.17"
},
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0"
},
"scripts": {
"start": "nodemon --debug --harmony-async-await --allow-natives-syntax index.js",
"babel": "babel-node index.js",
"nodemon": "nodemon --exec babel-node index.js"
}
}