-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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
{
"name": "kc-cli",
"private": true,
"scripts": {
"prepare": "husky install",
"commit": "git add . && npx cz",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write '**/*.js'"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.27.0",
"commitizen": "^4.3.1",
"commitlint": "^19.8.1",
"cz-customizable": "^7.4.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.1.0",
"handlebars": "^4.7.8",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3"
},
"volta": {
"node": "20.19.2"
}
}