-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
42
43
44
45
46
{
"name": "weibo",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www",
"dev": "cross-env NODE_ENV=development ./node_modules/.bin/nodemon bin/www",
"build": "cross-env NODE_ENV=production pm2 start bin/www",
"lint": "eslint --fix ./ ./bin/www",
"test": "cross-env NODE_ENV=test jest --runInBand --forceExit --colors"
},
"dependencies": {
"ajv": "^6.12.0",
"cross-env": "^7.0.0",
"debug": "^4.1.1",
"ejs": "~2.3.3",
"formidable-upload-koa": "^1.0.1",
"fs-extra": "^8.1.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-generic-session": "^2.0.4",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-redis": "^4.0.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"mysql2": "^2.1.0",
"redis": "^3.0.2",
"sequelize": "^5.21.5",
"xss": "^1.0.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2",
"supertest": "^4.0.2"
},
"pre-commit": [
"lint"
]
}