-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
47
48
49
{
"name": "koa2-weibo-code",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www",
"dev": "cross-env NODE_ENV=dev ./node_modules/.bin/nodemon --inspect=9229 bin/www",
"prd": "cross-env NODE_ENV=production pm2 start pm2.conf.json",
"test": "cross-env NODE_ENV=test jest --runInBand --forceExit --colors",
"lint": "eslint --ext .js ./src"
},
"dependencies": {
"ajv": "^8.6.3",
"date-fns": "^2.25.0",
"debug": "^4.1.1",
"ejs": "^2.3.4",
"formidable-upload-koa": "^1.0.1",
"fs-extra": "^10.0.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-generic-session": "^2.2.0",
"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.3.2",
"redis": "^3.1.2",
"sequelize": "^6.7.0",
"xss": "^1.0.10"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"jest": "^27.3.1",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2",
"supertest": "^6.1.6"
},
"pre-commit": [
"lint"
]
}