package.json fixed

This commit is contained in:
Roozbeh Karimi 2025-10-03 18:52:49 -04:00
parent 6c9361785a
commit 1433ac2ce7
2 changed files with 7 additions and 5 deletions

View File

@ -149,7 +149,7 @@ app.use((err, req, res, next) => {
});
// Set listening port
server.listen(NODE_PORT, async () => {
server.listen(NODE_PORT, "localhost", async () => {
console.log(
`Express Server with Socket.io started on Port: ${app.get(
"port"

View File

@ -1,13 +1,15 @@
{
"name": "my-fullstack-app",
"name": "aeroecho-fullstack",
"private": true,
"scripts": {
"dev": "concurrently \"npm run backend:dev\" \"npm run frontend:dev\"",
"start": "concurrently \"npm run backend:start\" \"npm run frontend:start\"",
"backend:dev": "cd backend && npm run dev",
"frontend:dev": "cd frontend && npm run dev",
"backend:start": "cd backend && npm start",
"frontend:start": "cd frontend && npm start",
"install:all": "cd backend && npm install && cd ../frontend && npm install"
"backend:start": "cd backend && npm run start",
"frontend:start": "cd frontend && npm run start",
"build": "cd frontend && npm run build",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"