-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "koa2-demo",
"version": "1.0.0",
"description": "use koa2 to create server",
"main": "index.js",
"scripts": {
"start": "node app.js",
"pm2": "pm2 start ./pm2.yml --only koa",
"dev": "pm2 start ./pm2.yml --only koa-dev",
"pro": "pm2 start ./pm2.yml --only koa-pro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leenty/koa2-demo.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/leenty/koa2-demo/issues"
},
"homepage": "https://github.com/leenty/koa2-demo#readme",
"dependencies": {
"axios": "^0.15.3",
"kcors": "^1.3.2",
"koa": "^2.0.0",
"koa-bodyparser": "^4.0.0",
"koa-convert": "^1.2.0",
"koa-json": "^1.1.3",
"koa-jwt": "^2.2.4",
"koa-logger": "^2.0.1",
"koa-router": "^7.1.1",
"koa2-cors": "^2.0.3",
"mysql": "^2.13.0",
"sequelize": "^3.30.2",
"sequelize-cli": "^2.7.0",
"ua-parser-js": "^0.7.12"
},
"devDependencies": {
"webpack": "^2.3.3"
}
}