quit_smoking_website/package.json
Avery Felts e78dc3f940 Add smoking cessation tracker application
Features:
- User authentication via WorkOS (Apple, Google, Phone)
- Daily check-in dialog for usage tracking
- Calendar view with usage heatmap
- Personalized reduction plan generator after 7 days of tracking
- Custom OKLCH color theme with DM Sans and Space Mono fonts

Tech stack:
- Next.js 15 with App Router
- Shadcn/UI components
- Prisma with SQLite database
- Tailwind CSS v4

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 15:41:41 -07:00

54 lines
1.4 KiB
JSON

{
"name": "quit_smoking_website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@workos-inc/authkit-nextjs": "^2.13.0",
"@workos-inc/node": "^8.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"lucide-react": "^0.563.0",
"next": "16.1.4",
"react": "19.2.3",
"react-day-picker": "^9.13.0",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"prisma": "^5.22.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"trustedDependencies": [
"sharp",
"unrs-resolver",
"prisma"
]
}