Files
Voting-System/package.json
2026-05-03 16:55:22 +05:30

16 lines
478 B
JSON
Executable File

{
"name": "student-council-election",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "npm run start --prefix server",
"client": "npm run dev --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install-all": "npm install && npm install --prefix server && npm install --prefix client"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}