-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "iso-repo",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"fix": "biome check --fix --no-errors-on-unmatched --files-ignore-unknown=true",
"clean": "rm -rf docs node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.next}",
"lint": "pnpm -r --if-present run lint",
"test": "pnpm -r --if-present run test",
"check": "pnpm -r --if-present run check",
"build": "pnpm -r --if-present run build",
"update-msw": "pnpm -r --if-present run update-msw",
"docs": "typedoc --out docs --plugin typedoc-plugin-missing-exports"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@hugomrdias/configs": "workspace:^",
"depcheck": "^1.4.7",
"simple-git-hooks": "^2.11.0",
"typedoc": "^0.26.10",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "5.6.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true --staged"
}
}