-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
{
"name": "audora",
"private": true,
"scripts": {
"dev": "turbo run dev",
"start": "turbo run start:frontend start:api start:signal",
"start:frontend": "turbo run start:frontend --filter=audora-frontend",
"start:api": "turbo run start:api --filter=audora-api",
"start:signal": "turbo run start:signal --filter=audora-signal",
"build": "turbo run build",
"build:frontend": "docker build -f docker/frontend.prod.Dockerfile -t audora-frontend .",
"build:backend": "docker build -f docker/backend.prod.Dockerfile -t audora-backend .",
"build:signal": "docker build -f docker/signal.prod.Dockerfile -t audora-signal .",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:up": "docker compose up -d database",
"db:down": "docker compose down database",
"db:deploy": "turbo run db:deploy",
"db:seed": "turbo run db:seed",
"db:studio": "turbo run db:studio",
"db:generate": "turbo run db:generate",
"db:reset": "turbo run db:reset",
"db:migrate": "turbo run db:migrate",
"infra:up": "docker compose up -d",
"infra:down": "docker compose down",
"infra:build": "docker-compose -f docker-compose.yaml build --no-cache"
},
"devDependencies": {
"baseline-browser-mapping": "^2.10.8",
"prettier": "^3.8.1",
"turbo": "^2.8.17",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.10",
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}