-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 887 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 887 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
34
{
"name": "qibla",
"version": "0.0.1",
"devDependencies": {
"@biomejs/biome": "2.3.9",
"tailwindcss": "3.4.19",
"turbo": "^2.8.17",
"typescript": "5.9.3"
},
"engines": {
"node": ">=24",
"bun": ">=1.3"
},
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:admin": "turbo dev --filter=@qibla/admin",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format --write .",
"typecheck": "turbo typecheck",
"db:push": "turbo db:push --filter=@qibla/db",
"db:generate": "turbo db:generate --filter=@qibla/db",
"db:migrate": "turbo db:migrate --filter=@qibla/db",
"db:studio": "turbo db:studio --filter=@qibla/db",
"db:seed": "turbo db:seed --filter=@qibla/db"
},
"workspaces": [
"apps/*",
"packages/*"
]
}