-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 718 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "career-guidance-web",
"version": "1.0.0",
"private": true,
"scripts": {
"setup": "npm --prefix backend install && npm --prefix frontend install && npm --prefix backend run setup-db",
"dev": "concurrently -n backend,frontend -c green,blue \"npm --prefix backend run dev\" \"npm --prefix frontend run dev\"",
"build": "npm --prefix frontend install && npm --prefix backend install && npm --prefix frontend run build && node scripts/publishRoot.js",
"build:root": "npm --prefix frontend run build && node scripts/publishRoot.js",
"start": "npm --prefix backend run start",
"serve": "npm run build && npm run start"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}