2021-07-25 20:45:51 +00:00
|
|
|
{
|
|
|
|
"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",
|
2021-07-25 20:45:51 +00:00
|
|
|
"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-12-17 07:21:42 +00:00
|
|
|
"dev": "npx nodemon",
|
2021-07-25 20:45:51 +00:00
|
|
|
"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",
|
2021-07-25 20:45:51 +00:00
|
|
|
"dependencies": {
|
2022-03-22 10:34:57 +00:00
|
|
|
"axios": "^0.26.1",
|
2022-12-17 07:21:42 +00:00
|
|
|
"Common": "file:../Common",
|
2022-04-10 22:04:03 +00:00
|
|
|
"CommonServer": "file:../CommonServer",
|
2021-07-25 20:45:51 +00:00
|
|
|
"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",
|
2021-07-25 20:45:51 +00:00
|
|
|
"lodash": "^4.17.21",
|
2022-12-17 07:21:42 +00:00
|
|
|
"Model": "file:../Model",
|
2023-05-04 01:08:50 +00:00
|
|
|
"socket.io": "^4.6.1",
|
2022-12-17 07:21:42 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2021-07-25 20:45:51 +00:00
|
|
|
"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"
|
2021-07-25 20:45:51 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-17 07:21:42 +00:00
|
|
|
"nodemon": "^2.0.20",
|
2022-05-05 16:57:19 +00:00
|
|
|
"ts-node-dev": "1.1.8"
|
2021-07-25 20:45:51 +00:00
|
|
|
}
|
|
|
|
}
|