-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"private": true,
"type": "module",
"scripts": {
"dev": "conc -k -n 'server,vite' 'go run . --dev' 'wait-on tcp:10270 && vite dev'",
"build": "bun run check && vite build",
"preview": "go run .",
"format": "biome check --write",
"check": "run-p 'check:*'",
"check:tsc": "svelte-check",
"check:eslint": "eslint src",
"check:format": "biome check"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.1",
"@tsconfig/svelte": "^5.0.8",
"@types/bun": "^1.3.10",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"eslint-plugin-svelte": "^3.15.2",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"npm-run-all2": "^8.0.4",
"svelte": "^5.53.9",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^7.3.1",
"wait-on": "^9.0.4"
}
}