Files
medassist-ng/package.json
T

28 lines
807 B
JSON

{
"name": "medassist-ng",
"private": true,
"scripts": {
"prepare": "husky",
"lint": "cd backend && npm run lint && cd ../frontend && npm run lint",
"lint:fix": "cd backend && npm run lint:fix && cd ../frontend && npm run lint:fix",
"check": "cd backend && npm run check && cd ../frontend && npm run check",
"build": "cd backend && npm run build && cd ../frontend && npm run build"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"husky": "^9.1.0",
"lint-staged": "^17.0.4"
},
"overrides": {
"yaml": "^2.8.3"
},
"lint-staged": {
"backend/src/**/*.ts": [
"npx @biomejs/biome check --write --no-errors-on-unmatched"
],
"frontend/src/**/*.{ts,tsx,css}": [
"npx @biomejs/biome check --write --no-errors-on-unmatched"
]
}
}