nextjs-dashboard/package.json

40 lines
880 B
JSON
Raw Normal View History

2023-10-29 23:23:33 +00:00
{
2023-10-30 06:32:26 +00:00
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"seed": "node -r dotenv/config ./scripts/seed.js",
2023-10-30 06:32:26 +00:00
"start": "next start",
"lint": "next lint"
2023-10-30 06:32:26 +00:00
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@tailwindcss/forms": "^0.5.6",
"@types/node": "20.5.7",
"@vercel/postgres": "^0.5.1",
2023-10-30 06:32:26 +00:00
"autoprefixer": "10.4.15",
"bcrypt": "^5.1.1",
"clsx": "^2.0.0",
"next": "^14.0.1",
"next-auth": "5.0.0-beta.3",
2023-10-30 06:32:26 +00:00
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"use-debounce": "^9.0.4",
2023-10-30 06:32:26 +00:00
"zod": "^3.22.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/react": "18.2.33",
2023-10-30 06:32:26 +00:00
"@types/react-dom": "18.2.14",
"dotenv": "^16.3.1",
"eslint": "8.52.0",
"eslint-config-next": "14.0.1",
2023-10-30 06:32:26 +00:00
"prettier": "^3.0.3"
},
"engines": {
"node": ">=18.11"
2023-10-30 06:32:26 +00:00
}
}