diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json index 3c1c63e..db840b7 100644 --- a/package.json +++ b/package.json @@ -13,9 +13,9 @@ "start": "node dist/server/index.js", "test": "vitest run", "test:watch": "vitest", - "typecheck": "tsc --noEmit", - "lint": "biome check .", - "lint:fix": "biome check --write .", + "check": "pnpm check:ts && pnpm check:lint", + "check:ts": "tsc --noEmit", + "check:lint": "biome check .", "format": "biome format --write .", "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", |
