This is a Next.js project bootstrapped with create-next-app.
$ npx create-next-app@13.4.19
✔ What is your project named? … my-app
✔ Would you like to use TypeScript? … Yes
✔ Would you like to use ESLint? … Yes
✔ Would you like to use Tailwind CSS? … Yes
✔ Would you like to use `src/` directory? … Yes
✔ Would you like to use App Router? (recommended) … Yes
✔ Would you like to customize the default import alias? … No
$ cd folder_name
$ npm run dev$ npm i next@14.2.0 eslint-config-next@14.2.0-
firebase
$ npm i firebase
-
next auth
$ npm i next-auth
-
Bcrypt
$ npm i bcrypt -
Jest
$ npm install -D jest jest-environment-jsdom @testing-library/react @testing-library/jest-dom $ npm i --save-dev @types/jest $ npm install --save-dev ts-node -
Prisma
// installation $ yarn add -D prisma $ yarn add @prisma/client // init project $ yarn prisma init // pull existing table into model code $ yarn prisma db pull // generate table from model $ yarn prisma migrate dev