-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.11 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.11 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
{
"name": "birdplan",
"version": "0.0.1",
"private": true,
"workspaces": [
"frontend",
"backend",
"scripts",
"shared"
],
"scripts": {
"build": "npm run build --workspace=frontend && npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"build:backend": "npm run build --workspace=backend",
"start:backend": "npm run start --workspace=backend",
"start:frontend": "npm run start --workspace=frontend",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npm run dev --workspace=frontend",
"dev:backend": "npm run dev --workspace=backend",
"get-avicommons": "npm run get-avicommons --workspace=scripts",
"tz-sync-regions": "npm run tz-sync-regions --workspace=scripts",
"lint": "npm run lint --workspace=frontend",
"typecheck": "npm run build --workspace=backend && npm run build --workspace=frontend && npm run typecheck --workspace=scripts && npm run typecheck --workspace=shared"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=22.0.0"
}
}