-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
19 lines (19 loc) · 1.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "project-ems",
"author": {
"email": "[email protected]",
"name": "Kyle Flynn",
"url": "https://github.com/kyle-flynn"
},
"scripts": {
"install:lib": "cd ./lib/models && npm install && cd ../client && npm install && cd ../server && npm install && cd ../../",
"build:lib": "cd ./lib/models && npm run build && npm link && cd ../client && npm run build && npm link && cd ../server && npm run build && npm link && cd ../../",
"build:backend": "cd ./back-end/api && npm run build && npm run dist && cd ../realtime && npm run build && npm run dist",
"build:frontend": "cd ./front-end && npm run build",
"install:backend": "cd back-end/api && npm install && cd ../realtime && npm install && cd ../../",
"install:frontend": "cd front-end && npm install && npm link @toa-lib/models && npm link @toa-lib/client && cd ../",
"setup": "npm run install:lib && npm run build:lib && npm run install:backend && npm run install:frontend",
"build:all": "npm run build:lib && npm run build:backend && cd ../../",
"dist": "npm run build:backend && npm run build:frontend && xcopy .\\back-end\\api\\dist .\\bin\\api /E /R /Y && xcopy .\\back-end\\realtime\\dist .\\bin\\realtime /E /R /Y && xcopy .\\front-end\\dist .\\bin\\webapp /E /R /Y"
}
}