-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.35 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
{
"name": "gemini-rss-translator",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"vercel-build": "vite build",
"preview:cf": "npm run build && npx wrangler pages dev dist",
"deploy:cf": "npm run build && npx wrangler pages deploy dist",
"db:generate:d1": "drizzle-kit generate --config=drizzle.d1.config.ts",
"db:migrate:d1:local": "wrangler d1 migrations apply gemini-rss-db --local",
"db:migrate:d1:remote": "wrangler d1 migrations apply gemini-rss-db --remote",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"@neondatabase/serverless": "^0.10.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@vercel/node": "^3.2.29",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.1.7",
"drizzle-orm": "^0.36.4",
"framer-motion": "^12.23.24",
"idb-keyval": "^6.2.2",
"linkedom": "^0.18.12",
"lucide-react": "^0.562.0",
"react": "^19.2.0",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"recharts": "^3.5.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"undici": "^6.21.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@eslint/js": "^9.39.3",
"@tailwindcss/typography": "^0.5.19",
"@types/mozilla-readability": "^0.2.1",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.23",
"drizzle-kit": "^0.28.1",
"eslint": "^9.39.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.2",
"typescript-eslint": "^8.56.1",
"vite": "^6.2.0",
"wrangler": "^4.69.0"
},
"engines": {
"node": ">=22"
}
}