mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-15 20:01:38 +00:00
* remove auth sign out form side anv * remove unused clsx * comment out code * comment out code that throws error when trying to deploy to vercel * Remove vercel emails * comment out more code so it will deploy to vercel * Include AUTH_URL * add notes to commented out code * Add bcrypt * Use .env instead of .env.local * Update types * Move skeletons * Update import * Delete search functionality * More fixes * Misc fixes * Update login-form.tsx * Update table.tsx * Update eslint * eslint fix * formatting --------- Co-authored-by: Delba de Oliveira <delbabrown@gmail.com>
35 lines
742 B
JSON
35 lines
742 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.18",
|
|
"@tailwindcss/forms": "^0.5.6",
|
|
"@types/node": "20.5.7",
|
|
"@vercel/postgres": "^0.5.0",
|
|
"autoprefixer": "10.4.15",
|
|
"bcrypt": "^5.1.1",
|
|
"clsx": "^2.0.0",
|
|
"next": "^14.0.0",
|
|
"postcss": "8.4.31",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"tailwindcss": "3.3.3",
|
|
"typescript": "5.2.2",
|
|
"zod": "^3.22.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.1",
|
|
"@types/react": "18.2.21",
|
|
"@types/react-dom": "18.2.14",
|
|
"dotenv": "^16.3.1",
|
|
"prettier": "^3.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|