-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon app.js",
"start": "pm2 start ecosystem.config.js --watch --no-daemon",
"stop": "pm2 stop ecosystem.config.js",
"lint": "eslint --fix ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [],
"author": "yaogengzhu",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cos-nodejs-sdk-v5": "^2.12.1",
"dayjs": "^1.11.7",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"file-type": "16.5.4",
"husky": "^8.0.3",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"multiparty": "^4.2.3",
"mysql2": "^3.3.1",
"nodemon": "^2.0.22",
"on-finished": "^2.4.1",
"pm2": "^5.3.0",
"redis": "^4.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.8.8"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}