mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-15 11:51:39 +00:00
* Duplicate starter
* Remove code for chapter 16
* Add code for chapter 15
* first 3 chapters
* Remove routes and actions
* chapter 3
* Chapters 12-13
* chapter 5
* Revert "Chapters 12-13"
This reverts commit b6da764d85.
* re-add Link to page
* chapter 5
* chapter 6
* Chapter 11 and 12
* chapter 7
* Revert
* Chapter 11
* Remove PPR flag
* chapter 8
* Chapter 9
* switch from pnpm to npm
* 💅
* Create pnpm-lock.yaml
* build errors
* Fix
* Fix
* Update next
* Update nextauth
---------
Co-authored-by: StephDietz <steph.dietz@vercel.com>
39 lines
886 B
JSON
39 lines
886 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": "^14.0.0",
|
|
"next-auth": "^5.0.0-beta.3",
|
|
"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"
|
|
}
|
|
}
|