-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 811 Bytes
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
{
"name": "field-tracker",
"version": "0.1.0",
"private": true,
"description": "Lightweight field project tracker with a table + map view and live weather-based site risk.",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -n server,web -c blue,magenta \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "npm run dev --workspace @field-tracker/server",
"dev:web": "npm run dev --workspace @field-tracker/web",
"build": "npm run build --workspaces --if-present",
"start": "node packages/server/dist/main.cjs",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"concurrently": "^9.1.2",
"typescript": "^5.6.3"
}
}