-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "diseasetotarget",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "tsx --env-file=.env server.ts",
"build": "vite build && npm run build:server",
"build:server": "esbuild server.ts --bundle --platform=node --target=node20 --outfile=dist-server/server.cjs --external:vite --external:fsevents --format=cjs",
"preview": "vite preview",
"lint": "tsc --noEmit",
"start": "node dist-server/server.cjs"
},
"dependencies": {
"@google/genai": "1.32.0",
"@supabase/supabase-js": "^2.106.2",
"@types/express": "^5.0.6",
"cookie-parser": "^1.4.7",
"d3": "7.9.0",
"docx": "^9.6.0",
"express": "^5.2.1",
"file-saver": "^2.0.5",
"lucide-react": "0.460.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.8.0"
},
"devDependencies": {
"@netlify/functions": "^5.2.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"esbuild": "^0.25.12",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}