Files
simple-node/package.json
2026-02-14 04:01:55 +00:00

20 lines
543 B
JSON

{
"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"
}
}