-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "skaarup.dev-v2",
"version": "0.0.2",
"private": true,
"type": "module",
"scripts": {
"start": "bun run ./build",
"dev": "bunx --bun vite dev",
"build": "bunx --bun svelte-kit sync && bunx --bun vite build",
"preview": "bunx --bun vite preview",
"build:preview": "bunx --bun vite build && PORT=5173 bun ./build",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"format": "biome format --write .",
"fmt": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslym/svelte-adapter-bun": "^0.5.9",
"@sveltejs/kit": "^2.16.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.0.0",
"@types/bun": "^1.2.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.0.0-next.17",
"nanoid": "^5.0.9",
"prettier": "^4.0.0-alpha.10",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.19.3",
"svelte-check": "^4.1.4",
"sveltekit-plugin-console": "^0.1.11",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.3",
"vite": "^6.0.11"
},
"dependencies": {},
"trustedDependencies": [
"@biomejs/biome",
"@sveltejs/kit",
"esbuild",
"svelte-preprocess"
]
}