chagned start-app command to be a dup of start

this is due to older installs trying to call start-app
start-apps functionality has been moved to start-dev
This commit is contained in:
Thegan Govender
2023-12-22 08:00:21 +02:00
parent 21a97c8066
commit f003cdb67e

View File

@@ -6,11 +6,12 @@
"scripts": {
"start-client": "vite --host",
"start-server": "cd backend && nodemon server.js",
"start-app": "concurrently \"npm run start-server\" \"npm run start-client\"",
"start-dev": "concurrently \"npm run start-server\" \"npm run start-client\"",
"deploy-local": "npm run build && npm run start-server",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"build": "vite build",
"start-app": "cd backend && node server.js",
"start": "cd backend && node server.js"
},
"dependencies": {