### Mantine Next.js Development and Build Commands Source: https://github.com/beerth21624/billio-dev-fe/blob/develop/README.md These npm scripts facilitate the development and production build processes for the Mantine Next.js application. They allow starting a development server, bundling the application for deployment, and analyzing the final bundle size. ```Shell npm run dev npm run build npm run analyze ``` -------------------------------- ### Mantine Next.js Storybook and Formatting Commands Source: https://github.com/beerth21624/billio-dev-fe/blob/develop/README.md Additional npm scripts for managing Storybook, a UI component development environment, and for automatically formatting code using Prettier to maintain consistent style across the project. ```Shell npm run storybook npm run storybook:build npm run prettier:write ``` -------------------------------- ### Mantine Next.js Testing and Linting Commands Source: https://github.com/beerth21624/billio-dev-fe/blob/develop/README.md A set of npm scripts designed for ensuring code quality and correctness. These commands cover TypeScript type checking, ESLint code linting, Prettier formatting checks, and running Jest unit tests, including a watch mode and a comprehensive test suite. ```Shell npm run typecheck npm run lint npm run prettier:check npm run jest npm run jest:watch npm run test ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.