Files
moto-adv-website/package.json
ske087 d1337b4b77 Implement core website structure and pages
- Create responsive homepage with hero section, features, and animations
- Add adventures page with filterable adventure grid
- Add routes page with downloadable GPX route library
- Implement Header component with responsive navigation
- Set up Tailwind CSS with custom adventure theme
- Fix Next.js configuration and add Unsplash image support
- Add Framer Motion animations throughout
- Install and configure all dependencies successfully

Features added:
- Modern UI with gradient backgrounds and glass morphism
- Mobile-responsive design
- Interactive animations and hover effects
- Adventure browsing and filtering
- Route discovery and download system
- Professional motorcycle adventure branding
2025-07-23 12:38:37 +03:00

48 lines
1.2 KiB
JSON

{
"name": "moto-adv-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "14.2.18",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@types/node": "^20.17.9",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"typescript": "^5.7.2",
"tailwindcss": "^3.4.17",
"postcss": "^8.4.41",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.18",
"framer-motion": "^11.11.17",
"lucide-react": "^0.469.0",
"react-hook-form": "^7.54.0",
"next-auth": "^4.24.10",
"@next-auth/prisma-adapter": "^1.0.7",
"prisma": "^5.22.0",
"@prisma/client": "^5.22.0",
"bcryptjs": "^2.4.3",
"@types/bcryptjs": "^2.4.6",
"react-leaflet": "^4.2.1",
"leaflet": "^1.9.4",
"@types/leaflet": "^1.9.14",
"gpxparser": "^3.0.8",
"multer": "^1.4.5-lts.1",
"@types/multer": "^1.4.12",
"sharp": "^0.33.5",
"react-dropzone": "^14.2.10",
"recharts": "^2.13.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/forms": "^0.5.9"
}
}