-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "voting_monitor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"checkout": "ts-node src/task/checkoutCount.ts",
"prepare": "husky install"
},
"author": "sspin",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"gxbjs": "^1.5.8",
"gxclient": "^3.0.2",
"morgan": "^1.10.0",
"mysql2": "^2.3.0",
"readline": "^1.3.0",
"sequelize": "^6.6.5",
"sqlite3": "^5.0.2",
"tracer": "^1.1.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/express": "^4.17.13",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --format=codeframe"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}