oneuptime/Realtime/package.json

36 lines
983 B
JSON
Raw Normal View History

{
"name": "realtime",
"version": "3.0.0",
2021-11-22 11:56:32 +00:00
"description": "A project to handle all realtime processing for OneUptime",
2022-03-02 11:18:11 +00:00
"main": "index.ts",
"scripts": {
2022-11-10 11:57:49 +00:00
"start": "node --require ts-node/register Index.ts",
2022-03-22 09:28:59 +00:00
"compile": "tsc",
2022-05-23 11:45:32 +00:00
"dev": "nodemon",
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true"
},
"keywords": [],
"author": "",
2022-04-30 13:25:36 +00:00
"license": "MIT",
2022-02-25 13:25:16 +00:00
"type": "module",
"dependencies": {
2022-03-22 10:34:57 +00:00
"axios": "^0.26.1",
2022-04-10 22:04:03 +00:00
"CommonServer": "file:../CommonServer",
"Common": "file:../Common",
2022-08-03 18:57:41 +00:00
"Model": "file:../Model",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
2022-02-28 14:04:19 +00:00
"dotenv": "^16.0.0",
2022-03-22 10:34:57 +00:00
"express": "^4.17.3",
"lodash": "^4.17.21",
"socket.io": "^4.5.4",
"uuid": "^8.3.2",
2022-03-22 10:34:57 +00:00
"winston": "^3.6.0",
2022-02-27 11:02:40 +00:00
"winston-slack-webhook-transport": "^2.1.0"
},
"devDependencies": {
2022-05-05 16:57:19 +00:00
"ts-node-dev": "1.1.8"
}
}