-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "workspace",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev --host=0.0.0.0",
"dev:debug": "node --inspect ./node_modules/.bin/vite dev --host=0.0.0.0",
"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"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@shikijs/markdown-it": "^3.6.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.53.4",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tanstack/table-core": "^8.20.5",
"@types/date-fns": "^2.5.3",
"@types/eslint": "^9.6.0",
"autoprefixer": "^10.4.20",
"bits-ui": "^1.8.0",
"clsx": "^2.1.1",
"cookie": ">=0.7.0",
"date-fns": "^4.1.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"gray-matter": "^4.0.3",
"lucide-svelte": "^0.474.0",
"mdsvex": "^0.11.2",
"mode-watcher": "^0.5.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"rehype-slug": "^6.0.0",
"shiki": "^3.6.0",
"svelte": "^5.53.6",
"svelte-check": "^4.0.0",
"svg-to-ico": "^1.0.0",
"tailwind-merge": "^3.0.1",
"tailwind-variants": "^0.3.1",
"tailwindcss": "^3.4.9",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.4.1",
"vitest": "^3.0.9"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"d3": "^7.9.0",
"mermaid": "^11.12.3",
"rehype-external-links": "^3.0.0",
"rehype-mermaid": "^3.0.0"
}
}