Added admin dashboard project BOD-194

This commit is contained in:
Patrick Fic
2020-07-23 16:09:21 -07:00
parent acd8984d5b
commit 4a5bc50d40
23 changed files with 12342 additions and 2 deletions

View File

@@ -7,11 +7,12 @@
"npm": "6.11.3"
},
"scripts": {
"setup": "yarn && cd firebase && yarn && cd .. && cd client && yarn ",
"setup": "yarn && cd firebase && yarn && cd .. && cd client && yarn && cd .. && cd admin && yarn",
"admin": "cd admin && yarn start",
"client": "cd client && yarn start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\" \"yarn admin\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},