-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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": "koa2framework",
"version": "1.0.0",
"description": "koa2基本框架,可拿起来直接搭建项目使用",
"main": "app.js",
"scripts": {
"start": "pm2 start ecosystem.config.js --env production",
"start_dev": "pm2 start ecosystem.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"koa",
"nodejs"
],
"author": "lengyufeng",
"license": "MIT",
"dependencies": {
"ejs": "^2.5.7",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-generic-session": "^2.0.0",
"koa-isajax": "^1.0.5",
"koa-jsonp": "^2.0.2",
"koa-logger": "^3.1.0",
"koa-multer": "^1.0.2",
"koa-mysql-session": "0.0.2",
"koa-redis": "^3.1.1",
"koa-router": "^7.2.1",
"koa-send": "^4.1.1",
"koa-static": "^4.0.1",
"koa-views": "^6.1.1",
"koa-websocket": "^4.1.0",
"moment": "^2.19.2",
"mysql": "^2.15.0",
"mysql2": "^1.4.2",
"sequelize": "^4.22.5"
},
"devDependencies": {
"nodemon": "^1.12.1"
}
}