{ "name": "simple-node-app", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "start:backend": "node backend/index.js", "start:frontend": "node frontend/index.js", "start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"", "install:all": "cd backend && npm install && cd ../frontend && npm install", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "concurrently": "^9.2.1" } }