first commit

This commit is contained in:
Daniel Markow 2026-02-13 09:58:09 +01:00
commit 8b2b772a32
31 changed files with 8994 additions and 0 deletions

44
package.json Normal file
View file

@ -0,0 +1,44 @@
{
"name": "better-auth-setup",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"better-auth": "^1.4.18",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"next": "16.1.6",
"pg": "^8.18.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.62.0",
"react-hot-toast": "^2.5.2",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.15.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"prettier": "3.6.2",
"tailwindcss": "^4",
"tsx": "^4.20.4",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}