Files
medassist-ng/package.json
T
dependabot[bot] 8a9b44ef31 build(deps-dev): bump @biomejs/biome from 2.4.8 to 2.4.9 in the minor-and-patch group
Bumps the minor-and-patch group with 1 update: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome).


Updates `@biomejs/biome` from 2.4.8 to 2.4.9
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.9/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-30 10:03:40 +02:00

23 lines
605 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"
},
"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"
]
}
}