This repository was archived by the owner on Jul 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.75 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.75 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
{
"name": "afaik-svelte",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev --port 5178",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"chromatic": "npx chromatic --project-token=chpt_3515cd118ebdc1c"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@playwright/test": "^1.49.0",
"@storybook/addon-a11y": "^8.4.5",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-mdx-gfm": "^8.4.5",
"@storybook/addon-svelte-csf": "5.0.0-next.11",
"@storybook/blocks": "^8.4.5",
"@storybook/svelte": "^8.4.5",
"@storybook/sveltekit": "^8.4.5",
"@storybook/test": "^8.4.5",
"@storybook/test-runner": "^0.19.1",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-vercel": "^5.4.7",
"@sveltejs/enhanced-img": "^0.4.1",
"@sveltejs/kit": "^2.8.1",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@types/eslint": "^9.6.0",
"@zerodevx/svelte-img": "^2.1.2",
"autoprefixer": "^10.4.20",
"bits-ui": "1.0.0-next.58",
"chromatic": "^11.18.1",
"clsx": "^2.1.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"mdsvex": "^0.11.2",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"storybook": "^8.4.5",
"svelte": "^5.2.5",
"svelte-check": "^4.0.9",
"tailwind-merge": "^2.5.4",
"tailwind-variants": "^0.3.0",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"dependencies": {
"@inlang/paraglide-sveltekit": "^0.12.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@unpic/svelte": "^0.0.56",
"delay": "^6.0.0",
"lucide-svelte": "^0.460.1",
"mode-watcher": "^0.5.0",
"node-cache": "^5.1.2",
"shiki": "^1.23.1",
"superjson": "^2.2.1",
"svelte-radix": "^2.0.1",
"trpc-sveltekit": "^3.6.2",
"zod": "^3.23.8"
}
}