-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
47
48
49
50
51
{
"name": "@iqscaffold/backend",
"version": "0.0.0",
"private": true,
"description": "Provide an optional Git commit hooks.",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"lint": "pnpm lint:stylelint && pnpm formatter:check",
"lint:stylelint": "stylelint \"**/*.css\" --aei",
"node_modules:clear": "rm -rf node_modules",
"prepare": "husky",
"formatter:check": "oxfmt --check",
"formatter:write": "oxfmt --write",
"release": "release-it --ci"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@release-it/conventional-changelog": "^10.0.6",
"cz-conventional-changelog": "^3.3.0",
"glob": "^13.0.6",
"husky": "9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.17.4",
"release-it": "^19.2.4",
"release-it-pnpm": "^4.6.6",
"sort-package-json": "^3.6.1",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^16.0.0"
},
"lint-staged": {
"*": [
"pnpm formatter:check"
],
"package.json": [
"sort-package-json"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=22.15.0"
},
"packageManager": "pnpm@10.32.1"
}