-
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) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 850 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": "s26-gallery",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"prebuild": "npm run optimize-images",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit && npm run validate",
"validate": "tsx scripts/validate-data.ts",
"optimize-images": "tsx scripts/optimize-images.ts"
},
"dependencies": {
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.4",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.14",
"tsx": "^4.22.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}