59519ae214
Bumps [lint-staged](https://github.com/lint-staged/lint-staged) from 16.4.0 to 17.0.4. - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v16.4.0...v17.0.4) --- updated-dependencies: - dependency-name: lint-staged dependency-version: 17.0.4 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniel Volz <mail@danielvolz.org>
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.14",
|
|
"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"
|
|
]
|
|
}
|
|
}
|