-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 819 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "weather-activity-ranker",
"private": true,
"version": "1.0.0",
"description": "Ranks how desirable a city is to visit for skiing, surfing, outdoor and indoor sightseeing over the next 7 days, based on weather data.",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently -k -n backend,frontend -c blue,magenta \"npm:dev:backend\" \"npm:dev:frontend\"",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspace=backend && npm run build --workspace=frontend",
"test": "npm run test --workspace=backend",
"typecheck": "npm run typecheck --workspace=backend && npm run typecheck --workspace=frontend"
},
"devDependencies": {
"concurrently": "^9.1.0"
}
}