Files
estimation-flow/package.json
T

76 lines
2.3 KiB
JSON
Raw Normal View History

2025-07-16 17:57:52 +00:00
{
"name": "nextn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
2025-07-16 17:57:52 +00:00
"genkit:dev": "genkit start -- tsx src/ai/dev.ts",
"genkit:watch": "genkit start -- tsx --watch src/ai/dev.ts",
"build": "next build",
2025-09-01 07:22:01 +00:00
"start": "next start -p 3000",
2025-07-16 17:57:52 +00:00
"lint": "next lint",
2025-07-17 11:12:35 +00:00
"typecheck": "tsc --noEmit",
"db:seed": "tsx scripts/seed.ts"
2025-07-16 17:57:52 +00:00
},
"dependencies": {
"@next-auth/better-sqlite3-adapter": "^0.3.1",
2025-07-16 17:57:52 +00:00
"@genkit-ai/googleai": "^1.14.1",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"better-sqlite3": "^9.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
2025-07-16 17:57:52 +00:00
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"embla-carousel-react": "^8.0.0",
"firebase": "^10.9.0",
"framer-motion": "^11.0.20",
"genkit": "latest",
"lucide-react": "^0.359.0",
"next": "14.2.35",
"next-auth": "4.24.7",
"nodemailer": "^6.9.13",
"pdf-lib": "^1.17.1",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.1",
"recharts": "^2.12.3",
"tailwind-merge": "^2.2.2",
2025-07-16 17:57:52 +00:00
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
2025-07-16 17:57:52 +00:00
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
2025-07-16 17:57:52 +00:00
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
2025-07-16 17:57:52 +00:00
"@types/react": "^18",
"@types/react-dom": "^18",
"genkit-cli": "latest",
2025-07-16 17:57:52 +00:00
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
2025-07-16 17:57:52 +00:00
"typescript": "^5"
}
}