mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 14:49:07 +00:00
31 lines
951 B
JSON
31 lines
951 B
JSON
{
|
|
"name": "@oneuptime/ingestor",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node --require ts-node/register Index.ts",
|
|
"compile": "tsc",
|
|
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
|
|
"dev": "npx nodemon",
|
|
"audit": "npm audit --audit-level=low",
|
|
"dep-check": "npm install -g depcheck && depcheck ./ --skip-missing=true",
|
|
"test": "jest --passWithNoTests"
|
|
},
|
|
"author": "OneUptime <hello@oneuptime.com> (https://oneuptime.com/)",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"Common": "file:../Common",
|
|
"ejs": "^3.1.10",
|
|
"protobufjs": "^7.3.2",
|
|
"ts-node": "^10.9.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.5.0",
|
|
"@types/node": "^17.0.31",
|
|
"jest": "^28.1.0",
|
|
"nodemon": "^2.0.20",
|
|
"ts-jest": "^28.0.2"
|
|
}
|
|
}
|