eec1653ff4
* fix(security): isolate dependency hotfix from github main * fix(security): expose hotfix jwt decorators across routes * test(e2e): restore stable app header selectors * test(e2e): align planner and app shell checks * test(e2e): add legacy settings page selectors * test(e2e): align settings page contracts
26 lines
648 B
JSON
26 lines
648 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"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.9",
|
|
"husky": "^9.1.0",
|
|
"lint-staged": "^16.4.0"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|