-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 911 Bytes
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": "tsumugi-root",
"private": true,
"type": "module",
"license": "MIT",
"packageManager": "pnpm@10.33.4",
"scripts": {
"build": "pnpm --filter @tsumugi/dashboard build && pnpm --filter @tsumugi/spec build && pnpm --filter tsumugi build",
"typecheck": "pnpm -r --if-present typecheck",
"test": "pnpm typecheck && vitest run",
"test:unit": "vitest run --project unit",
"test:workers": "vitest run --project workers",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.18.6",
"@types/node": "^26.1.1",
"drizzle-orm": "^0.45.2",
"fast-check": "^4.9.0",
"prettier": "^3.6.2",
"typescript": "^5.7.2",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
}
}