Files
estimation-flow/package.json
T

79 lines
2.4 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:17:01 +00:00
"start": "cross-env 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": {
"@genkit-ai/googleai": "^1.14.1",
"@genkit-ai/next": "^1.14.1",
"@hookform/resolvers": "^4.1.3",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-menubar": "^1.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
2025-07-17 11:12:35 +00:00
"better-sqlite3": "^11.1.2",
2025-07-16 17:57:52 +00:00
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
2025-07-16 17:57:52 +00:00
"date-fns": "^3.6.0",
"dotenv": "^16.5.0",
"embla-carousel-react": "^8.6.0",
"firebase": "^11.9.1",
2025-07-17 10:06:15 +00:00
"framer-motion": "^11.3.12",
2025-07-16 17:57:52 +00:00
"genkit": "^1.14.1",
"lucide-react": "^0.475.0",
"next": "15.3.3",
"next-auth": "5.0.0-beta.19",
"nodemailer": "^6.9.14",
2025-07-16 17:57:52 +00:00
"patch-package": "^8.0.0",
"pdf-lib": "^1.17.1",
2025-07-16 17:57:52 +00:00
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"recharts": "^2.15.1",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
2025-07-17 11:12:35 +00:00
"@types/better-sqlite3": "^7.6.11",
2025-07-16 17:57:52 +00:00
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
2025-07-16 17:57:52 +00:00
"@types/react": "^18",
"@types/react-dom": "^18",
"genkit-cli": "^1.14.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
2025-07-17 11:12:35 +00:00
"tsx": "^4.16.2",
2025-07-16 17:57:52 +00:00
"typescript": "^5"
}
}