create-auth-js-boiler
Version:
Create a new auth-js-boiler project
64 lines (63 loc) • 1.89 kB
JSON
{
"name": "auth-js-boiler",
"version": "0.1.0",
"private": false,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:studio": "prisma studio",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"publish-cli": "cd create-auth-js-boiler && npm run build && npm publish"
},
"dependencies": {
"@auth/prisma-adapter": "2.7.2",
"@hookform/resolvers": "^3.10.0",
"@prisma/client": "^6.5.0",
"@radix-ui/react-accordion": "^1.2.10",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.11",
"@vercel/analytics": "^1.2.2",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.436.0",
"next": "^15.3.2",
"next-auth": "^5.0.0-beta.25",
"nodemailer": "^6.10.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.56.3",
"react-spinners": "^0.15.0",
"sharp": "^0.34.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^16.18.126",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "^15.3.2",
"fs-extra": "^11.3.0",
"postcss": "^8",
"prettier": "^3.5.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.5.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.3"
},
"description": "Auth JS Boiler - Complete authentication solution"
}