Files
estimation-flow/package.json
T

71 lines
2.1 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
"build": "next build",
2025-12-26 02:17:07 +00:00
"start": "next start",
2025-07-16 17:57:52 +00:00
"lint": "next lint",
2025-07-17 11:12:35 +00:00
"typecheck": "tsc --noEmit",
2025-12-26 01:52:09 +00:00
"db:seed": "tsx scripts/seed.ts",
"outdated": "npm outdated"
2025-07-16 17:57:52 +00:00
},
"dependencies": {
2025-12-26 01:52:09 +00:00
"@hookform/resolvers": "^3.4.2",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.0.0",
2025-12-26 01:52:09 +00:00
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"better-sqlite3": "^9.6.0",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
2025-12-26 01:52:09 +00:00
"clsx": "^2.1.1",
2025-07-16 17:57:52 +00:00
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
2025-12-26 01:52:09 +00:00
"embla-carousel-react": "^8.1.5",
"firebase": "^10.12.2",
"framer-motion": "^11.2.10",
"lucide-react": "^0.395.0",
"next": "14.2.4",
"next-auth": "4.24.7",
2025-12-26 01:52:09 +00:00
"nodemailer": "^6.9.14",
"pdf-lib": "^1.17.1",
2025-12-26 01:52:09 +00:00
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.5",
"recharts": "^2.12.7",
"tailwind-merge": "^2.3.0",
2025-07-16 17:57:52 +00:00
"tailwindcss-animate": "^1.0.7",
2025-12-26 01:52:09 +00:00
"zod": "^3.23.8"
2025-07-16 17:57:52 +00:00
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
2025-12-26 01:52:09 +00:00
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.14.2",
"@types/nodemailer": "^6.4.14",
2025-12-26 01:52:09 +00:00
"@types/react": "^18.3.3",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"tsx": "^4.15.6",
"typescript": "^5.4.5"
2025-07-16 17:57:52 +00:00
}
2025-12-26 01:52:09 +00:00
}