mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 23:30:10 +00:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "probe-api",
|
|
"version": "3.0.0",
|
|
"description": "A project to handle all resource fetching or update for probes",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"start": "ts-node Index.ts",
|
|
"compile": "tsc",
|
|
"dev": "nodemon",
|
|
"audit": "npm audit --audit-level=low",
|
|
"dep-check": "depcheck ./ --skip-missing=true",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [],
|
|
"author": "OneUptime Limited. ",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"axios": "^0.26.1",
|
|
"Common": "file:../Common",
|
|
"Model": "file:../Model",
|
|
"CommonServer": "file:../CommonServer",
|
|
"cors": "^2.8.5",
|
|
"cross-env": "^7.0.3",
|
|
"dotenv": "^16.0.0",
|
|
"express": "^4.17.3",
|
|
"lodash": "^4.17.21",
|
|
"moment": "^2.29.1",
|
|
"mongodb": "^4.4.1",
|
|
"uuid": "^8.3.2",
|
|
"winston": "^3.6.0",
|
|
"winston-slack-webhook-transport": "^2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.13",
|
|
"@types/jest": "^27.5.1",
|
|
"@types/node": "^17.0.22",
|
|
"jest": "^28.1.0",
|
|
"ts-jest": "^28.0.2",
|
|
"ts-node-dev": "^1.1.8"
|
|
}
|
|
}
|