-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 KB
/
package.json
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
{
"name": "substack",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start-dev": "node --import=tsx --watch ./server/index.ts",
"dev": "vite build --watch --sourcemap true --minify false",
"start": "tsx ./server/index.ts",
"build": "tsc && vite build",
"preview": "vite preview",
"biome": "biome check --write ./src"
},
"dependencies": {
"@extractus/article-extractor": "^8.0.17",
"@hono/node-server": "^1.13.8",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.4",
"commonmark": "^0.31.2",
"dompurify": "^3.2.4",
"he": "^1.2.0",
"hono": "^4.7.4",
"idb": "^8.0.2",
"lucide-react": "^0.477.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.3.0",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"turndown": "^7.2.0",
"vaul": "^1.1.2",
"workbox-background-sync": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.11",
"@types/commonmark": "^0.27.9",
"@types/he": "^1.2.3",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/turndown": "^5.0.5",
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.0.11",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.1",
"vite-plugin-pwa": "^0.21.1",
"workbox-core": "^7.3.0"
}
}