-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.37 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
{
"name": "koa2-es6-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "babel-node index.js",
"dev": "cross-env NODE_ENV=development supervisor --harmony index.js",
"pmStart": "cross-env NODE_ENV=production pm2 start index.js --node-args='--harmony' --name 'koa2-es6-demo'",
"pmStop": "cross-env NODE_ENV=production pm2 stop index.js --name 'koa2-es6-demo'",
"pmRestart": "cross-env NODE_ENV=production pm2 restart index.js --node-args='--harmony' --name 'koa2-es6-demo'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.24.0",
"cross-env": "^5.0.1",
"debug": "^2.6.3",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^2.0.1",
"koa-onerror": "^1.2.1",
"koa-router": "^7.2.1",
"koa-static": "^3.0.0",
"koa-views": "^5.2.1",
"mongoose": "^4.11.5",
"pug": "^2.0.0-rc.1",
"redis": "^2.7.1"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0"
}
}