-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "react-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"server": "tsx watch server/index.ts",
"server:prod": "tsx server/index.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run server\"",
"clean": "rm -rf dist",
"lint": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.2",
"@google/generative-ai": "^0.21.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"axios": "^1.16.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dompurify": "^3.0.8",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"highlight.js": "^11.9.0",
"lucide-react": "^0.546.0",
"marked": "^12.0.0",
"motion": "^12.23.24",
"multer": "^1.4.5-lts.1",
"openai": "^6.37.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.14.2",
"reactflow": "^11.11.0",
"recharts": "^3.8.1",
"sql.js": "^1.10.3",
"tailwind-merge": "^3.5.0",
"uuid": "^9.0.1",
"vite": "^6.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dompurify": "^3.0.5",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^22.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.21",
"concurrently": "^8.2.2",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}