-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 795 Bytes
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
{
"name": "virtual-wardrobe-frontend",
"version": "1.0.0",
"type": "module",
"description": "Frontend for the Virtual Wardrobe application",
"private": true,
"scripts": {
"dev": "tsx server.ts",
"start": "node server.ts",
"build": "vite build",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@google/genai": "^1.50.1",
"@vitejs/plugin-react": "^6.0.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"lucide-react": "^1.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-is": "^19.2.5",
"recharts": "^3.8.1",
"tsx": "^4.21.0",
"vite": "^8.0.8"
}
}