-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
27 lines (27 loc) · 847 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
{
"name": "openalternative",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"start": "turbo start",
"lint": "bun biome lint --apply .",
"check": "bun biome check --apply .",
"format": "bun biome format --organize-imports-enabled --write .",
"typecheck": "turbo typecheck",
"db:generate": "bun --cwd packages/db db:generate",
"db:migrate": "bun --cwd packages/db db:migrate",
"db:studio": "bun --cwd packages/db db:studio",
"db:push": "bun --cwd packages/db db:push",
"db:reset": "bun --cwd packages/db db:reset",
"postinstall": "bun run db:generate"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"workspaces": ["apps/*", "packages/*"],
"packageManager": "bun@1.1.40"
}