-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 918 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 918 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
35
36
37
38
39
40
41
42
{
"name": "script",
"description": "My personal script repository",
"scripts": {
"commit": "git-cz",
"prepare": "husky install",
"lint:script": "eslint --ext .js,.jsx,.ts,.tsx --fix --quiet ./"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"czConfig": ".commitlintrc.js"
}
},
"keywords": [
"Leslie",
"script"
],
"author": "Leslie",
"volta": {
"node": "20.9.0",
"pnpm": "8.10.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"commitizen": "^4.3.0",
"cz-git": "^1.7.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts}": [
"npm run lint:script",
"git add ."
]
}
}