-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 739 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 739 Bytes
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
{
"name": "quick-template",
"type": "module",
"version": "0.0.1",
"sideEffects": false,
"scripts": {
"prepare": "simple-git-hooks",
"lint": "eslint . --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"commitizen": "^4.3.0",
"cz-git": "^1.9.1",
"eslint": "^9.3.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "npx commitlint --edit ${1}"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint . --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}