-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "silang-medical-services",
"scripts": {
"start-public": "cd client && yarn start-public",
"start-private": "cd client && yarn start-private",
"start-api": "cd server/api && yarn start",
"start-socket-host": "cd server/web-socket/vps-host && yarn start",
"start-socket-client": "cd server/web-socket/vps-client && yarn start",
"start-socket-raspberry": "cd server/web-socket/rpi4-client && yarn start",
"start-flask-deprecated": "cd dump && pipenv run python main.py",
"update-public": "cd client && yarn update --latest",
"update-private": "cd client && yarn update --latest",
"update-api": "cd server/api && yarn update --latest",
"update-socket-host": "cd server/web-socket/vps-host && yarn update --latest",
"update-socket-client": "cd server/web-socket/vps-client && yarn update --latest",
"update-socket-raspberry": "cd server/web-socket/rpi4-client && yarn update --latest",
"build-public": "cd client && yarn build-public",
"build-private": "cd client && yarn build-private",
"build-flask-deprecated": "cd dump && pipenv run pip freeze > requirements.txt"
}
}