report-generator-backend/package.patch.json
jorming.chong 148182c680
Some checks are pending
Test / test (push) Waiting to run
first commit
2026-01-07 09:29:07 +08:00

23 lines
650 B
JSON

{
"files": ["dist"],
"main": "dist/index.js",
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"scripts": {
"build": "yarn clean && tsc -b tsconfig.build.json",
"clean": "rimraf dist",
"commit": "cz",
"dev": "ts-node-dev --respawn --project tsconfig.json --watch ./volumes/config.json ./src/bootstrap.ts",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:src": "eslint 'src/**/*.ts'",
"lint:test": "eslint 'test/**/*.ts'",
"start": "node ./dist/bootstrap.js",
"test": "nyc mocha",
"test:coverage": "nyc --reporter cobertura mocha",
"health-check": "node ./dist/healthCheck.js"
}
}