-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "frame-server",
"version": "1.0.0",
"description": "",
"type": "module",
"module": "./src/app.js",
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "npm run start",
"start": "nodemon ./src/app.js",
"serve": "docker-compose up -d",
"secret": "node ./init/generate-secret.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write src/",
"lint-staged": "lint-staged",
"commit": "cz",
"postinstall": "husky install"
},
"author": "jinpengh <[email protected]>",
"license": "MIT",
"dependencies": {
"@koa/router": "^11.0.2",
"bcrypt": "^5.1.1",
"crypto": "^1.0.1",
"dayjs": "^1.11.10",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-unless": "^1.0.7",
"mysql": "^2.18.1",
"nodemon": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"commitizen": "^4.3.0",
"cz-git": "^1.7.1",
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"prettier": "^2.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"lint-staged": {
"src/**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}": [
"prettier --write"
]
}
}