-
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) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.8 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
{
"name": "url-shortener",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/bun": "^1.3.13",
"@typescript/native-preview": "^7.0.0-dev.20260510.1"
},
"private": true,
"scripts": {
"redirect:dev": "set -a; [ -f ./.env ] && . ./.env; set +a; cd apps/redirect-service && bun run dev",
"redirect:start": "cd apps/redirect-service && bun run start",
"redirect:test": "cd apps/redirect-service && bun run test",
"redirect:typecheck": "cd apps/redirect-service && bun run typecheck",
"redirect:lint": "cd apps/redirect-service && bun run lint",
"redirect:format": "cd apps/redirect-service && bun run format",
"web:dev": "set -a; [ -f ./.env ] && . ./.env; set +a; cd apps/management-web && bun run dev",
"web:build": "cd apps/management-web && bun run build",
"web:start": "cd apps/management-web && bun run start",
"web:test": "cd apps/management-web && bun run test",
"web:typecheck": "cd apps/management-web && bun run typecheck",
"web:lint": "cd apps/management-web && bun run lint",
"web:format": "cd apps/management-web && bun run format",
"db:migrate": "set -a; [ -f ./.env ] && . ./.env; set +a; cd packages/shared-db && bun run migrate",
"db:backup": "cd packages/shared-db && bun run backup",
"db:studio": "cd packages/shared-db && bun run studio",
"db:typecheck": "cd packages/shared-db && bun run typecheck",
"db:lint": "cd packages/shared-db && bun run lint",
"db:format": "cd packages/shared-db && bun run format",
"test": "bun run redirect:test && bun run web:test",
"check-all": "bun run redirect:format && bun run web:format && bun run redirect:lint && bun run web:lint && bun run db:lint && bun run redirect:typecheck && bun run web:typecheck && bun run db:typecheck && bun run test"
},
"workspaces": ["apps/management-web", "apps/redirect-service", "packages/*"]
}