Project Dependencies
The fastest way to get started is to use create-next-app
.
Note: Make sure you pin the Next.js version to 13.1 for this course.
npx create-next-app@13.1 --experimental-app
This will download and setup a Next.js v13 app for us. For the other dependencies, take a look at the package.json
file.
Note: Duplicates have been removed from the dependency list.
{
"@prisma/client": "4.6.1",
"bcrypt": "5.1.0",
"class-variance-authority": "0.4.0",
"clsx": "1.2.1",
"cookie": "0.5.0",
"css-reset-and-normalize": "2.3.6",
"jose": "4.11.1",
"react-feather": "2.0.10"
}
The dev dependencies:
{
"prisma": "4.6.1",
"tailwindcss": "3.2.4",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.1"
}