-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 757 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 757 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
{
"name": "museumsufer",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"deploy": "turbo run deploy",
"screenshot": "turbo run screenshot",
"screenshots:manifest": "bun scripts/regen-screenshots.ts",
"db:migrate:local": "turbo run db:migrate:local",
"db:migrate": "turbo run db:migrate"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"lefthook": "^2.1.6",
"turbo": "^2.9.12",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.12",
"engines": {
"bun": ">=1.3"
}
}