|
11 | 11 | "prepare": "svelte-kit sync", |
12 | 12 | "test-check": "bun test", |
13 | 13 | "check": "bun type-check && bun test-check && bun lint-check && bun format-check", |
14 | | - "fix": "bun lint-fix && bun format", |
15 | | - "tidy": "bun type-check && bun test-check && bun --bun lint-fix --quiet && bun --bun format --log-level silent", |
| 14 | + "fix": "biome check --fix && prettier --write .", |
| 15 | + "tidy": "bun type-check && bun test-check && biome check --fix && prettier --write .", |
16 | 16 | "type-check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", |
17 | 17 | "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", |
18 | | - "format": "prettier --write .", |
19 | | - "format-check": "prettier --check .", |
20 | | - "lint-check": "eslint .", |
| 18 | + "format": "biome format --write . && prettier --write .", |
| 19 | + "format-check": "biome format . && prettier --check .", |
| 20 | + "lint-check": "biome lint .", |
21 | 21 | "lint": "bun lint-check", |
22 | | - "lint-fix": "eslint . --fix", |
| 22 | + "lint-fix": "biome lint --fix .", |
23 | 23 | "db": "drizzle-kit", |
24 | 24 | "up": "bun db push --force && devenv processes up -d", |
25 | 25 | "down": "devenv processes down", |
|
28 | 28 | "logs": "tail -f ./.devenv/processes.log" |
29 | 29 | }, |
30 | 30 | "devDependencies": { |
31 | | - "@eslint/compat": "^1.4.0", |
32 | | - "@eslint/js": "^9.39.1", |
| 31 | + "@biomejs/biome": "^2.3.10", |
33 | 32 | "@sveltejs/adapter-node": "^5.4.0", |
34 | 33 | "@sveltejs/kit": "^2.49.1", |
35 | 34 | "@sveltejs/vite-plugin-svelte": "^6.2.1", |
|
40 | 39 | "daisyui": "^5.5.13", |
41 | 40 | "drizzle-kit": "^0.31.8", |
42 | 41 | "drizzle-orm": "^0.45.0", |
43 | | - "eslint": "^9.39.1", |
44 | | - "eslint-config-prettier": "^10.1.8", |
45 | | - "eslint-plugin-svelte": "^3.13.1", |
46 | | - "globals": "^16.5.0", |
47 | 42 | "postgres": "^3.4.5", |
48 | 43 | "prettier": "^3.7.4", |
49 | | - "prettier-plugin-svelte": "^3.4.0", |
| 44 | + "prettier-plugin-svelte": "^3.4.1", |
50 | 45 | "prettier-plugin-tailwindcss": "^0.7.2", |
51 | 46 | "svelte": "^5.45.6", |
52 | 47 | "svelte-check": "^4.3.4", |
53 | 48 | "tailwindcss": "^4.1.17", |
54 | 49 | "typescript": "^5.9.3", |
55 | | - "typescript-eslint": "^8.48.1", |
56 | 50 | "vite": "^7.2.6", |
57 | 51 | "yaml": "^2.8.2" |
58 | 52 | }, |
|
0 commit comments