Initial commit: teaching institution management API.

Express/MongoDB backend with JWT auth, RBAC, S3 uploads, notifications, and scheduled jobs.
This commit is contained in:
2026-08-09 04:18:08 +02:00
commit f04c797be6
107 changed files with 9190 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
{
"name": "gameno-api",
"version": "1.0.0",
"description": "Teaching Institution Management Dashboard Backend API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"seed": "node seed.js"
},
"keywords": [
"express",
"mongoose",
"node",
"rbac",
"jwt",
"teaching-institution"
],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.1106.0",
"@aws-sdk/s3-request-presigner": "^3.1106.0",
"axios": "^1.7.9",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.5",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}