-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 1.3 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
31
{
"name": "blood-bank",
"version": "1.0.0",
"description": "<br/>",
"main": "index.js",
"scripts": {
"install-admin": "cd admin-page && npm i",
"start-admin": "cd admin-page && npm run dev",
"install-lp": "cd landing-page && npm i",
"start-lp": "cd landing-page && npm run dev",
"install-all": "npm run install-admin && npm run install-lp",
"build-admin": "cd admin-page && npm run build",
"build-lp": "cd landing-page && npm run build",
"build-all": "npm run build-admin && npm run build-lp",
"move-build": "mkdir -p ./backend/wwwroot && cp -R ./admin-page/dist ./backend/wwwroot/admin && cp -R ./landing-page/dist ./backend/wwwroot/landing-page",
"build-to-serve": "npm run build-all && if [ -d ./backend/wwwroot ]; then rm -Rf ./backend/wwwroot; fi && npm run move-build",
"start-sv": "cd backend && dotnet run",
"start": "npm run build-to-serve && npm run start-sv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NgoQuocBao1010/Blood-Bank.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NgoQuocBao1010/Blood-Bank/issues"
},
"homepage": "https://github.com/NgoQuocBao1010/Blood-Bank#readme"
}