oneuptime/helm-chart/package.json
Nawaz Dhandala e90104ab23
move to ts
2022-03-22 14:33:58 +00:00

33 lines
1.0 KiB
JSON

{
"name": "helm-chart",
"version": "3.0.0",
"description": "Helm Chart Server for OneUptime",
"main": "server.js",
"scripts": {
"preinstall": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",
"start": "ts-node index.ts",
"dev": "cross-env NODE_ENV=development ts-node-dev --inspect=0.0.0.0 index.ts",
"test": "cross-env NODE_ENV=development mocha --exit test/index.ts",
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true --ignores='ejs'"
},
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"common-server": "file:../common-server",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.2",
"mocha": "^9.1.4"
},
"resolutions": {},
"devDependencies": {
"depcheck": "^1.4.3",
"npm-force-resolutions": "0.0.10",
"ts-node-dev": "^1.1.8"
}
}