Files
medassist-ng/package.json
T
dependabot[bot] 4de138015d build(deps-dev): bump @biomejs/biome in the minor-and-patch group (#559)
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.13 to 2.4.14
- [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.14/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.14
  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-05-04 10:14:08 +02:00

26 lines
649 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.14",
"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"
]
}
}