chore: remove unnecessary use of npx

This commit is contained in:
tigattack
2025-09-28 18:23:29 +01:00
parent 840664c39e
commit 178f871582
2 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "vite build", "build": "vite build",
"lint": "npx @biomejs/biome check .", "lint": "biome check .",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {

View File

@@ -19,10 +19,10 @@
"build:backend": "cd backend && npm run build", "build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build", "build:frontend": "cd frontend && npm run build",
"build": "npm run build:backend && npm run build:frontend", "build": "npm run build:backend && npm run build:frontend",
"format": "npx @biomejs/biome format --write .", "format": "biome format --write .",
"format:check": "npx @biomejs/biome format .", "format:check": "biome format .",
"lint": "npx @biomejs/biome check .", "lint": "biome check .",
"lint:fix": "npx @biomejs/biome check --write ." "lint:fix": "biome check --write ."
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "2.2.4", "@biomejs/biome": "2.2.4",