This commit is contained in:
rgrgogu
2026-05-05 23:18:47 +08:00
parent 5aeb959e92
commit a8f10a25d7
38 changed files with 5992 additions and 2 deletions
+35
View File
@@ -0,0 +1,35 @@
{
"name": "star-auth-system",
"version": "1.0.0",
"description": "STAR Phase 1 - Tier 1 Auth System with CSRF, Rate Limiting, RBAC, Google & System Auth",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"google-auth-library": "^9.0.0",
"jsonwebtoken": "^9.0.1",
"nodemailer": "^6.9.5",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"rate-limit-redis": "^4.0.0",
"redis": "^4.6.7",
"sequelize": "^6.32.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}