oneuptime/HelmChart/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

2020-03-22 11:39:12 +00:00
{
2022-05-10 19:28:56 +00:00
"name": "helm-chart",
2020-12-10 07:10:18 +00:00
"version": "3.0.0",
2021-11-22 23:10:19 +00:00
"description": "Helm Chart Server for OneUptime",
2020-12-10 07:10:18 +00:00
"main": "server.js",
"scripts": {
2023-06-12 09:42:43 +00:00
"configure": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",
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",
2022-05-22 08:13:41 +00:00
"test": "mocha --exit test/index.ts",
2020-12-10 07:10:18 +00:00
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true --ignores='ejs'"
},
"author": "",
2022-04-30 13:25:36 +00:00
"license": "MIT",
2022-02-25 13:25:16 +00:00
"type": "module",
2020-12-10 07:10:18 +00:00
"dependencies": {
2022-03-22 10:34:57 +00:00
"chai": "^4.3.6",
"chai-http": "^4.3.0",
2022-12-17 07:21:42 +00:00
"Common": "file:../Common",
"CommonServer": "file:../CommonServer",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
2022-03-22 10:34:57 +00:00
"express": "^4.17.3",
2022-12-17 07:21:42 +00:00
"mocha": "^9.2.2",
"Model": "file:../Model",
"ts-node": "^10.9.1"
2021-03-06 12:46:43 +00:00
},
2021-03-06 13:24:28 +00:00
"resolutions": {},
2020-12-10 07:10:18 +00:00
"devDependencies": {
"depcheck": "^1.4.3",
2022-12-17 07:21:42 +00:00
"nodemon": "^2.0.20",
2022-02-27 11:02:40 +00:00
"npm-force-resolutions": "0.0.10",
"ts-node-dev": "^1.1.8"
2020-12-10 07:10:18 +00:00
}
2020-03-22 11:39:12 +00:00
}