-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
36
37
38
{
"name": "base0-monorepo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dashboard": "cd apps/dashboard && bun run dev",
"lint": "turbo lint",
"format": "turbo format",
"type-check": "turbo run type-check",
"test": "turbo run test",
"check": "biome check .",
"check:apply": "biome check --write .",
"db:push": "bun run --filter @base0/db db:push",
"db:studio": "bun run --filter @base0/db db:studio",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:clean": "docker-compose down -v && docker system prune -f"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "latest",
"@types/jsonwebtoken": "^9.0.10",
"turbo": "latest",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.2.16",
"dependencies": {
"hono": "^4.11.4",
"jsonwebtoken": "^9.0.3",
"nanoid": "^5.1.6"
}
}