1f5dd36b5c
Bumps the minor-and-patch group with 1 update: [lint-staged](https://github.com/lint-staged/lint-staged). Updates `lint-staged` from 17.0.4 to 17.0.5 - [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/v17.0.4...v17.0.5) --- updated-dependencies: - dependency-name: lint-staged dependency-version: 17.0.5 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>
28 lines
807 B
JSON
28 lines
807 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",
|
|
"check": "cd backend && npm run check && cd ../frontend && npm run check",
|
|
"build": "cd backend && npm run build && cd ../frontend && npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.15",
|
|
"husky": "^9.1.0",
|
|
"lint-staged": "^17.0.5"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|