Implemented email verification

This commit is contained in:
2024-04-12 13:52:16 +03:00
parent 78107d4ec7
commit b1ad7b5c3e
51 changed files with 604 additions and 213 deletions

View File

@@ -6,8 +6,15 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"browserslist:update": "npx update-browserslist-db@latest",
"browserslist": "npx browserslist"
},
"browserslist": [
">0.25%",
"not dead",
"not op_mini all"
],
"dependencies": {
"@auth/prisma-adapter": "^1.5.2",
"@hookform/resolvers": "^3.3.4",
@@ -28,6 +35,7 @@
"react-dom": "^18",
"react-hook-form": "^7.51.2",
"react-icons": "^5.0.1",
"react-loader-spinner": "^6.1.6",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
@@ -43,10 +51,14 @@
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-plugin-validate-filename": "^0.0.4",
"postcss": "^8",
"prisma": "^5.12.1",
"sass": "^1.74.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"engines": {
"node": ">=18"
}
}