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
|
{
"name": "@dispatch/frontend",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "svelte-check --tsconfig ./tsconfig.json"
},
"dependencies": {
"dompurify": "^3.4.5",
"highlight.js": "^11.11.1",
"marked": "^18.0.4",
"marked-highlight": "^2.2.4",
"svelte": "^5.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/dompurify": "^3.2.0",
"daisyui": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.0.0",
"vite": "^6.0.0"
}
}
|