-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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": "standards",
"version": "0.1.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "pnpm recursive run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cz": "git-cz",
"changeset": "changeset",
"changeset:v": "changeset version",
"release": "changeset publish",
"prepare": "simple-git-hooks"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@itaober/commitlint": "workspace:*",
"@itaober/eslint-config": "workspace:*",
"@itaober/prettier": "workspace:*",
"eslint": "^9.6.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.2"
},
"lint-staged": {
"*": [
"pnpm lint:fix"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "npx --no-install commitlint --edit $1"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}