-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.08 KB
/
package.json
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
{
"name": "@spa/workspace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run start --workspace=@spa/root-config\" \"npm run start --workspace=@spa/header\" \"npm run start --workspace=@spa/dashboard\"",
"build": "npm run build --workspace=@spa/root-config --workspace=@spa/header --workspace=@spa/dashboard",
"copy-host": "copyfiles -f ./src/host/dist/*.* ./server/host/wwwroot/",
"copy-header": "copyfiles -f ./src/header/dist/*.* ./server/header/wwwroot/",
"copy-dashboard": "copyfiles -f ./src/dashboard/dist/*.* ./server/dashboard/wwwroot/",
"copy-all": "concurrently \"npm run copy-host\" \"npm run copy-header\" \"npm run copy-dashboard\"",
"build-and-copy": "npm run build && npm run copy-all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"workspaces": [
"src/host",
"src/header",
"src/dashboard"
],
"keywords": [
"single-spa"
],
"author": "Paweł Nowak",
"license": "ISC",
"devDependencies": {
"concurrently": "^6.4.0",
"copyfiles": "^2.4.1"
}
}