-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "coily",
"private": true,
"scripts": {
"build": "turbo run build",
"check": "biome check .",
"check:fix": "biome check --write --unsafe .",
"deps:reinstall": "pnpm dlx rimraf node_modules pnpm-lock.yaml ./**/node_modules && pnpm install",
"deps:update": "pnpm -r update && pnpm dedupe",
"deps:update:latest": "pnpm -r update --latest && pnpm dedupe",
"prepare": "lefthook install",
"publish-packages": "turbo run check build test && changeset version && changeset publish && turbo run check:fix",
"test": "turbo run test"
},
"devDependencies": {
"@repo/tsconfig": "workspace:*",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@tsconfig/node20": "^20.1.4",
"lefthook": "^1.8.2",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]",
"pnpm": {
"allowedDeprecatedVersions": {
"are-we-there-yet": "2.0.0",
"gauge": "3.0.2",
"glob": "7.2.3 || 8.1.0",
"inflight": "1.0.6",
"npmlog": "5.0.1",
"rimraf": "3.0.2"
}
}
}