-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 872 Bytes
/
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
{
"type": "module",
"scripts": {
"build": "turbo run build",
"deps:reinstall": "pnpm dlx rimraf node_modules pnpm-lock.yaml ./**/node_modules && pnpm install",
"deps:update": "pnpm -r update --latest && pnpm dedupe",
"test": "turbo run test",
"check": "biome check .",
"check:fix": "biome check . --write --unsafe",
"prepare": "lefthook install",
"publish-packages": "turbo run check build test && changeset version && changeset publish && turbo run check:fix"
},
"private": true,
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.10",
"@repo/tsconfig": "workspace:*",
"lefthook": "^1.8.4",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"pnpm": {
"allowedDeprecatedVersions": {
"glob": "8.1.0",
"inflight": "1.0.6"
}
}
}