This is a personal Next.js site that houses my side projects.
Install dependencies:
npm install
Start a development server with hot reload:
npm run dev
Before building, linting runs automatically. To create a production build:
npm run build
Run the production server after building:
npm run start
Check lint rules:
npm run lint
Validate formatting with Prettier:
npm run prettier
Automatically fix formatting issues:
npm run prettier:fix
Run the Jest test suite:
npm test
Debug tests with the Node inspector:
npm run test:inspect