-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.58 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
{
"name": "polinema-ui",
"description": "An open-source website for Polinema UI components.",
"private": true,
"version": "0.0.1",
"type": "module",
"lint-staged": {
"*.{js,ts,svelte}": ["bunx eslint --fix"]
},
"scripts": {
"build": "vite build",
"check": "paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"format": "prettier --write .",
"knip": "knip",
"lint": "prettier --check . && eslint .",
"prepare": "paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide && svelte-kit sync && husky || echo ''",
"preview": "vite preview",
"test": "bun run test:unit -- --run && bun run test:e2e",
"test:unit": "vitest --passWithNoTests",
"test:e2e": "playwright install && playwright test"
},
"dependencies": {
"@fontsource-variable/inter": "^5.3.0",
"@fontsource-variable/plus-jakarta-sans": "^5.3.0",
"@fontsource/cormorant-garamond": "^5.3.0",
"@hugeicons/core-free-icons": "^4.2.3",
"@hugeicons/svelte": "^1.1.4",
"@tanstack/table-core": "^8.21.2",
"@xyflow/svelte": "^1.6.3",
"bits-ui": "^2.18.1",
"clsx": "^2.1.1",
"dompurify": "^3.4.14",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-svelte": "^8.6.0",
"mode-watcher": "^1.1.0",
"shiki": "^4.4.3",
"svelte-sonner": "^1.2.1",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.3.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@inlang/paraglide-js": "^2.18.2",
"@playwright/test": "^1.60.0",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-vercel": "^6.3.4",
"@sveltejs/kit": "^2.63.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^26.2.0",
"@vitest/browser-playwright": "^4.1.8",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.19.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"knip": "^6.32.2",
"lint-staged": "^17.3.0",
"mdsvex": "^0.12.7",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"shadcn-svelte": "^1.5.0",
"svelte": "^5.56.1",
"svelte-check": "^4.6.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.60.1",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"vitest-browser-svelte": "^2.1.1"
}
}