oneuptime/DataIngestor/package.json

37 lines
1.0 KiB
JSON
Raw Normal View History

2021-07-20 08:12:15 +00:00
{
"name": "data-ingestor",
"version": "3.0.0",
"description": "A project to handle all probe related processing",
2022-03-02 11:18:11 +00:00
"main": "index.ts",
2021-07-20 08:12:15 +00:00
"scripts": {
2022-03-02 11:18:11 +00:00
"start": "ts-node index.ts",
2022-03-22 09:28:59 +00:00
"compile": "tsc",
2022-02-27 12:11:06 +00:00
"dev": "cross-env NODE_ENV=development ts-node-dev --inspect=0.0.0.0 index.ts",
2021-07-23 19:45:55 +00:00
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true"
2021-07-20 08:12:15 +00:00
},
"keywords": [],
"author": "",
2022-04-30 13:25:36 +00:00
"license": "MIT",
2022-02-25 13:25:16 +00:00
"type": "module",
2021-07-20 08:12:15 +00:00
"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",
2021-07-20 08:12:15 +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-22 08:50:31 +00:00
"lodash": "^4.17.21",
"moment": "^2.29.1",
2022-03-22 10:34:57 +00:00
"mongodb": "^4.4.1",
2021-07-22 08:50:31 +00:00
"p-iteration": "^1.1.8",
"uuid": "^8.3.2",
2022-03-22 10:34:57 +00:00
"winston": "^3.6.0",
"winston-slack-webhook-transport": "^2.1.0"
2021-07-20 08:12:15 +00:00
},
"devDependencies": {
2022-02-27 11:02:40 +00:00
"ts-node-dev": "^1.1.8"
2021-07-20 08:12:15 +00:00
}
}