Compare commits

...

1 Commits

Author SHA1 Message Date
Kayne Ruse 174a56ac53 Updated dependencies 2025-07-26 03:57:44 +10:00
3 changed files with 628 additions and 515 deletions
+618 -505
View File
File diff suppressed because it is too large Load Diff
+9 -9
View File
@@ -19,19 +19,19 @@
}, },
"homepage": "https://github.com/krgamestudios/auth-server#readme", "homepage": "https://github.com/krgamestudios/auth-server#readme",
"dependencies": { "dependencies": {
"bcryptjs": "^2.4.3", "bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.6", "cookie-parser": "^1.4.7",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^16.4.5", "dotenv": "^17.2.1",
"express": "^4.19.2", "express": "^5.1.0",
"jsonwebtoken": "^9.0.2", "jsonwebtoken": "^9.0.2",
"mariadb": "^3.3.0", "mariadb": "^3.4.5",
"node-cron": "^3.0.3", "node-cron": "^4.2.1",
"node-fetch": "^3.3.2", "node-fetch": "^3.3.2",
"nodemailer": "^6.9.13", "nodemailer": "^7.0.5",
"sequelize": "^6.37.3" "sequelize": "^6.37.7"
}, },
"devDependencies": { "devDependencies": {
"nodemon": "^3.1.0" "nodemon": "^3.1.10"
} }
} }
+1 -1
View File
@@ -33,7 +33,7 @@ app.use('/admin', require('./admin'));
app.use('/auth', require('./auth')); app.use('/auth', require('./auth'));
//error on access //error on access
app.get('*', (req, res) => { app.get('/{*any}', (req, res) => {
res.redirect('https://github.com/krgamestudios/auth-server'); res.redirect('https://github.com/krgamestudios/auth-server');
}); });