-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "@iqkv/boot-build",
"version": "24.0.0",
"description": "Provide an optional Git commit hooks.",
"private": true,
"scripts": {
"lint": "npm run lint:stylelint",
"lint:stylelint": "stylelint \"**/*.css\" --cache",
"prepare": "husky",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write"
},
"author": "Dima Denisenko",
"license": "Apache-2.0",
"lint-staged": {
"**/*.{js}": [
"npm run lint",
"prettier . --check --ignore-unknown"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/git": "^10.0.1",
"cz-conventional-changelog": "^3.3.0",
"glob": "^11.0.0",
"husky": "9.1.6",
"lint-staged": "^15.2.5",
"prettier": "3.3.3",
"prettier-plugin-java": "2.6.5",
"prettier-plugin-packagejson": "2.5.3",
"semantic-release": "^24.1.2",
"sort-package-json": "^2.10.1",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=18.20.4"
}
}