oneuptime/DashboardAPI/package.json

29 lines
789 B
JSON
Raw Normal View History

2019-08-02 12:56:16 +00:00
{
2022-07-07 19:35:00 +00:00
"name": "dashboard-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
2022-03-29 17:40:50 +00:00
"scripts": {
2022-07-07 19:35:00 +00:00
"start": "ts-node Index.ts",
"compile": "tsc",
"dev": "nodemon",
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true",
"test": "jest"
2022-03-29 17:40:50 +00:00
},
2022-07-07 19:35:00 +00:00
"author": "",
"license": "ISC",
"dependencies": {
"Common": "file:../Common",
2022-08-03 18:57:41 +00:00
"Model": "file:../Model",
2022-07-07 19:35:00 +00:00
"CommonServer": "file:../CommonServer",
"ejs": "^3.1.8"
2022-03-29 17:40:50 +00:00
},
2022-07-07 19:35:00 +00:00
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"jest": "^28.1.0",
"ts-jest": "^28.0.2"
2022-03-29 17:40:50 +00:00
}
2022-07-07 19:35:00 +00:00
}