40d6f33676
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.10 to 2.4.11 - [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.11/packages/@biomejs/biome) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-version: 2.4.11 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
649 B
JSON
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.11",
|
|
"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"
|
|
]
|
|
}
|
|
}
|