first commit

This commit is contained in:
2026-05-03 16:55:22 +05:30
commit d3bb4199e1
12081 changed files with 662460 additions and 0 deletions

15
package.json Executable file
View File

@@ -0,0 +1,15 @@
{
"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"
}
}