Updated dependencies

This commit is contained in:
2025-07-26 03:56:40 +10:00
parent 2e8c3f98ca
commit 496048f62b
3 changed files with 782 additions and 619 deletions
+775 -612
View File
File diff suppressed because it is too large Load Diff
+6 -6
View File
@@ -20,14 +20,14 @@
"homepage": "https://github.com/krgamestudios/chat-server#readme", "homepage": "https://github.com/krgamestudios/chat-server#readme",
"dependencies": { "dependencies": {
"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",
"sequelize": "^6.37.3", "sequelize": "^6.37.7",
"socket.io": "^4.7.5" "socket.io": "^4.8.1"
}, },
"devDependencies": { "devDependencies": {
"nodemon": "^3.1.0" "nodemon": "^3.1.10"
} }
} }
+1 -1
View File
@@ -31,7 +31,7 @@ app.use('/admin', require('./admin'));
require('./chat')(io.of('/chat')); require('./chat')(io.of('/chat'));
//error on access //error on access
app.get('*', (req, res) => { app.get('/{*any}', (req, res) => {
res.redirect('https://github.com/krgamestudios/chat-server'); res.redirect('https://github.com/krgamestudios/chat-server');
}); });