-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.78 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.78 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
{
"name": "harvestforge",
"version": "3.0.0",
"private": true,
"description": "HarvestForge Logistics Planner — Custom Harvesting Fleet Command Center",
"workspaces": [
"packages/api",
"packages/web",
"packages/shared",
"packages/mobile"
],
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "npm run dev --workspace=packages/api",
"dev:web": "npm run dev --workspace=packages/web",
"dev:solver": "cd packages/solver && python -m uvicorn harvestforge_solver.server:app --reload --port 8001",
"build": "npm run build --workspace=packages/shared && npm run build --workspace=packages/api && npm run build --workspace=packages/web",
"build:api": "npm run build --workspace=packages/api",
"build:web": "npm run build --workspace=packages/web",
"test": "npm run test --workspaces --if-present",
"test:api": "npm run test --workspace=packages/api",
"test:web": "npm run test --workspace=packages/web",
"test:solver": "cd packages/solver && pytest",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx,json}\"",
"db:migrate": "npm run migrate --workspace=packages/api",
"db:migrate:down": "npm run migrate:down --workspace=packages/api",
"db:seed": "npm run seed --workspace=packages/api",
"db:reset": "npm run db:reset --workspace=packages/api",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/dist"
},
"devDependencies": {
"concurrently": "^9.1.0",
"prettier": "^3.4.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}