-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 KB
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": "cosmetics-store-end",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www",
"dev": "cross-env NODE_ENV=dev ./node_modules/.bin/nodemon bin/www",
"prd": "cross-env NODE_ENV=production pm2 start bin/www",
"test": "cross-env NODE_ENV=test echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js ./src"
},
"dependencies": {
"ajv": "^6.12.2",
"alipay-sdk": "^3.0.8",
"basic-auth": "^2.0.1",
"date-fns": "^2.12.0",
"debug": "^4.1.1",
"formidable-upload-koa": "^1.0.1",
"fs-extra": "^9.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"koa2-cors": "^2.0.6",
"mysql2": "^2.1.0",
"pug": "^2.0.3",
"redis": "^3.0.2",
"require-directory": "^2.1.1",
"sequelize": "^5.21.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-html": "^6.0.2",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint"
]
}