-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "bigmt-wildfire-platform",
"version": "1.0.0",
"description": "Production-ready wildfire operations platform for mobile robots and drones",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "pnpm@8.15.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"type-check": "turbo run type-check",
"clean": "turbo run clean",
"db:migrate": "cd apps/apigw && alembic upgrade head",
"db:seed": "cd apps/apigw && python scripts/seed_data.py",
"docker:dev": "docker-compose -f infra/docker/docker-compose.dev.yml up",
"docker:down": "docker-compose -f infra/docker/docker-compose.dev.yml down",
"start": "docker-compose -f infra/docker/docker-compose.dev.yml up",
"start:web": "npm run --workspace=@bigmt/console dev"
},
"devDependencies": {
"@types/node": "^20.10.0",
"turbo": "^1.11.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"license": "Apache-2.0"
}