-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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": "nodeKoa",
"version": "1.0.0",
"main": "app.js",
"license": "MIT",
"scripts": {
"start": "nodemon app.js"
},
"dependencies": {
"axios": "^0.19.0",
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.11",
"mysql2": "^1.6.5",
"require-directory": "^2.1.1",
"sequelize": "^5.8.6",
"validator": "^10.11.0"
},
"devDependencies": {
"husky": "^3.0.5",
"validate-commit-msg": "^2.14.0"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg"
}
},
"config": {
"validate-commit-msg": {
"types": ["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert"],
"scope": {
"required": false,
"allowed": ["*"],
"validate": false,
"multiple": false
},
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "",
"autoFix": false
}
}
}