mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-15 11:51:39 +00:00
* Update next to canary * Update layout.tsx * Use canary * Remove serverActions flag warning * Use unstable_noStore * Add Date.now() test * Update metadataBase url * Create wrapper component for Cards * Update page.tsx * Misc * Delete unused data fetch * Add noStore to /invoices and /customers functions * Remove date.now() * Use canary * Rename component * Fix imports * Update types for useFormStatus and useFormState * Rename folder, add team members * fixed images and added login button pending state * Update dashboard/final-example/app/lib/data.ts Co-authored-by: Matt Kane <m@mk.gg> --------- Co-authored-by: Steven Tey <stevensteel97@gmail.com> Co-authored-by: Matt Kane <m@mk.gg>
39 lines
894 B
JSON
39 lines
894 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev",
|
|
"lint": "next lint",
|
|
"seed": "node -r dotenv/config ./scripts/seed.js",
|
|
"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": "13.5.7-canary.27",
|
|
"next-auth": "5.0.0-beta.2",
|
|
"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",
|
|
"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"
|
|
}
|
|
}
|