mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
* chore: fix dashboard readme * feat: add prettier config * chore: update Node version requirement to 18.17.0 * Remove extra space * Update @tailwind/forms * Testing --------- Co-authored-by: mohamed.elzanaty3 <mohamed.elzanaty3@vodafone.com> Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> Co-authored-by: Delba de Oliveira <delbabrown@gmail.com>
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev",
|
|
"prettier": "prettier --write --ignore-unknown .",
|
|
"prettier:check": "prettier --check --ignore-unknown .",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@heroicons/react": "^2.0.18",
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"@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.2",
|
|
"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",
|
|
"@vercel/style-guide": "^5.0.1",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.52.0",
|
|
"eslint-config-next": "^14.0.0",
|
|
"eslint-config-prettier": "9.0.0",
|
|
"prettier": "^3.0.3",
|
|
"prettier-plugin-tailwindcss": "0.5.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.17.0"
|
|
}
|
|
}
|