Files
chat-server/package.json
T
dependabot[bot] d2b1433846 Bump socket.io from 4.8.1 to 4.8.3
Bumps [socket.io](https://github.com/socketio/socket.io) from 4.8.1 to 4.8.3.
- [Release notes](https://github.com/socketio/socket.io/releases)
- [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io/compare/socket.io@4.8.1...socket.io@4.8.3)

---
updated-dependencies:
- dependency-name: socket.io
  dependency-version: 4.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-02 18:37:53 +11:00

34 lines
901 B
JSON

{
"name": "chat-server",
"version": "1.5.5",
"description": "An API centric chat server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"dev": "npm run watch:server",
"watch:server": "nodemon . --ext js,jsx,json --ignore 'node_modules/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krgamestudios/chat-server.git"
},
"author": "Kayne Ruse",
"license": "Zlib",
"bugs": {
"url": "https://github.com/krgamestudios/chat-server/issues"
},
"homepage": "https://github.com/krgamestudios/chat-server#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mariadb": "^3.4.5",
"sequelize": "^6.37.7",
"socket.io": "^4.8.3"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}