Initial commit: Holiday Travel App with resort comparison, trip management, and multi-provider search

This commit is contained in:
2025-10-29 16:22:35 -04:00
commit 74f8e268c3
167 changed files with 18721 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "holiday-deal-finder",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev -p 4000 -H localhost",
"build": "next build",
"start": "next start -p 4000",
"postinstall": "node -e \"try{require('fs').mkdirSync('data',{recursive:true})}catch(e){}\""
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"lucide-react": "^0.452.0",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"autoprefixer": "10.4.19",
"postcss": "8.4.35",
"tailwindcss": "3.4.10",
"typescript": "5.6.3",
"@types/node": "20.14.10",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0"
}
}