-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "@dareharu/shareable-configs",
"private": true,
"scripts": {
"prepare": "is-ci || husky install .github/husky",
"dry-format": "biome check --no-errors-on-unmatched --files-ignore-unknown=true",
"format": "biome check --no-errors-on-unmatched --files-ignore-unknown=true --apply",
"test": "vitest run",
"build": "turbo run build",
"bump": "turbo run bump",
"check-update": "turbo run check-update"
},
"lint-staged": {
"*": [
"pnpm format -- --staged"
]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-angular": "^18.6.1",
"@favware/cliff-jumper": "^4.1.0",
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}