-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.77 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.77 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "site",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"format": "npm run lint:fix && npm run prettier:fix",
"preinstall": "npx only-allow pnpm",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "svelte-kit sync",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@fontsource-variable/eb-garamond": "^5.2.6",
"@fontsource-variable/figtree": "^5.2.8",
"@fontsource-variable/fraunces": "^5.2.7",
"@fontsource-variable/newsreader": "^5.2.8",
"@fontsource-variable/outfit": "^5.2.6",
"@fontsource-variable/spline-sans-mono": "^5.2.6",
"@fontsource/dm-mono": "^5.2.6",
"@fontsource/instrument-serif": "^5.2.6",
"@inlang/paraglide-js": "^2.2.0",
"hast-util-to-html": "^9.0.5",
"lucide-svelte": "^0.536.0",
"svg-parser": "^2.0.4",
"unist-util-find": "^3.0.0"
},
"devDependencies": {
"@content-collections/core": "^0.10.0",
"@content-collections/vite": "^0.2.7",
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.34.0",
"@playwright/test": "^1.55.0",
"@sveltejs/adapter-auto": "^6.1.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/enhanced-img": "^0.7.1",
"@sveltejs/kit": "^2.36.2",
"@sveltejs/vite-plugin-svelte": "^6.1.3",
"@tailwindcss/vite": "^4.1.12",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^24.3.0",
"@types/svg-parser": "^2.0.6",
"dedent": "^1.6.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-better-tailwindcss": "^3.7.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^3.11.0",
"globals": "^16.3.0",
"mdsvex": "^0.12.6",
"music-metadata": "^11.8.3",
"only-allow": "^1.2.1",
"prettier": "^3.6.2",
"prettier-plugin-jsdoc": "^1.3.3",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"svelte": "^5.38.2",
"svelte-check": "^4.3.1",
"svelte-eslint-parser": "^1.3.1",
"tailwindcss": "^4.1.12",
"tinyglobby": "^0.2.14",
"type-fest": "^4.41.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
"vite": "^7.1.3",
"vitest": "^3.2.4",
"zod": "^4.1.0"
}
}