oneuptime/Realtime/package.json
dependabot[bot] 6c5db4ec4f
Bump engine.io and socket.io in /Realtime
Bumps [engine.io](https://github.com/socketio/engine.io) to 6.4.2 and updates ancestor dependency [socket.io](https://github.com/socketio/socket.io). These dependencies need to be updated together.


Updates `engine.io` from 6.2.1 to 6.4.2
- [Release notes](https://github.com/socketio/engine.io/releases)
- [Changelog](https://github.com/socketio/engine.io/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/engine.io/compare/6.2.1...6.4.2)

Updates `socket.io` from 4.5.4 to 4.6.1
- [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/4.5.4...4.6.1)

---
updated-dependencies:
- dependency-name: engine.io
  dependency-type: indirect
- dependency-name: socket.io
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-04 01:08:50 +00:00

38 lines
1.0 KiB
JSON

{
"name": "realtime",
"version": "3.0.0",
"description": "A project to handle all realtime processing for OneUptime",
"main": "index.ts",
"scripts": {
"start": "node --require ts-node/register Index.ts",
"compile": "tsc",
"dev": "npx nodemon",
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"dependencies": {
"axios": "^0.26.1",
"Common": "file:../Common",
"CommonServer": "file:../CommonServer",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"lodash": "^4.17.21",
"Model": "file:../Model",
"socket.io": "^4.6.1",
"ts-node": "^10.9.1",
"uuid": "^8.3.2",
"winston": "^3.6.0",
"winston-slack-webhook-transport": "^2.1.0"
},
"devDependencies": {
"nodemon": "^2.0.20",
"ts-node-dev": "1.1.8"
}
}