forked from piotrkulpinski/openalternative
-
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) · 892 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 892 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": "openalternative",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --log-prefix=none",
"start": "turbo start",
"lint": "bun biome lint --apply .",
"check": "bun biome check --apply .",
"format": "bun biome format --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.4.4",
"typescript": "^5.8.2"
},
"overrides": {
"nanoid": "3.3.6"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "bun@1.2.2"
}