A configured Next.js TypeScript project. I use it for prototyping, learning, and interview take-home projects. The setup includes:
- Formatting via Prettier
- Styling via Styled Components
- Module Linting via ESLint
- CSS Linting via ESLint
- Unit Testing via Jest and React Testing Library
- Precommit Validation via Husky and Lint Staged
- Install Packages
npm install
# or
yarn install
- Start the project
npm run dev
# or
yarn dev
- Open http://localhost:7777 with your browser to see the result.