forked from tough1985/hello-koa2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 850 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 850 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
30
31
32
33
34
{
"name": "HelloKoa2",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/nodemon bin/run",
"koa": "./node_modules/.bin/runkoa bin/www",
"pm2": "pm2 start bin/run ",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register",
"start_koa": "bin/run"
},
"dependencies": {
"co": "^4.6.0",
"debug": "^2.2.0",
"jade": "~1.11.0",
"koa": "^2.0.0",
"koa-bodyparser": "^2.0.1",
"koa-convert": "^1.2.0",
"koa-json": "^1.1.1",
"koa-logger": "^1.3.0",
"koa-onerror": "^1.2.1",
"koa-router": "^7.0.0",
"koa-static": "^2.0.0",
"koa-views": "^5.0.1",
"log4js": "^0.6.38",
"runkoa": "^1.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"nodemon": "^1.8.1",
"supertest": "^2.0.1"
}
}