-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
35 lines (35 loc) · 999 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
28
29
30
31
32
33
34
35
{
"name": "openalternative",
"private": true,
"type": "module",
"scripts": {
"admin": "bun --cwd apps/admin",
"web": "bun --cwd apps/web",
"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/database db:generate",
"db:studio": "bun --cwd packages/database db:studio",
"db:pull": "bun --cwd packages/database db:pull",
"db:push": "bun --cwd packages/database db:push",
"db:reset": "bun --cwd packages/database db:reset",
"postinstall": "bun run db:generate"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"turbo": "^2.1.3",
"typescript": "^5.6.3"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"dependencies": {
"tlds": "^1.255.0"
}
}