← back to Omega Watches 2
package.json
45 lines
{
"name": "omega-watches-2",
"version": "2.0.0",
"private": true,
"description": "Enterprise-Grade Omega Price History & Daily MSRP Tracking System",
"scripts": {
"dev": "next dev -p 7600",
"build": "next build",
"start": "next start -p 7600",
"lint": "next lint",
"db:migrate": "node scripts/migrate.mjs",
"db:seed": "node scripts/seed.mjs",
"collector:run": "node collectors/runner.mjs",
"health": "curl -s http://localhost:7600/api/health | jq ."
},
"dependencies": {
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"pg": "^8.13.0",
"bcryptjs": "^2.4.3",
"jose": "^5.2.0",
"recharts": "^2.12.0",
"date-fns": "^3.6.0",
"zod": "^3.23.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.3.0",
"lucide-react": "^0.400.0",
"fuse.js": "^7.0.0"
},
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^20.12.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/pg": "^8.11.0",
"@types/bcryptjs": "^2.4.6",
"tailwindcss": "^3.4.0",
"postcss": "^8.4.38",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0"
}
}