https://github.com/masb0ymas/nextine
NextJS & Mantine UI v7
https://github.com/masb0ymas/nextine
eslint framer-motion mantine-ui nextjs reactjs typescript
Last synced: about 2 months ago
JSON representation
NextJS & Mantine UI v7
- Host: GitHub
- URL: https://github.com/masb0ymas/nextine
- Owner: masb0ymas
- License: mit
- Created: 2023-09-25T15:49:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-02T06:35:44.000Z (about 1 year ago)
- Last Synced: 2025-03-13T16:48:55.137Z (3 months ago)
- Topics: eslint, framer-motion, mantine-ui, nextjs, reactjs, typescript
- Language: TypeScript
- Homepage:
- Size: 2.48 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Mantine Next.js template
This is a template for [Next.js](https://nextjs.org/) pages router + [Mantine](https://mantine.dev/).
If you want to use app router instead, see [next-app-template](https://github.com/mantinedev/next-app-template).## Features
This template comes with the following features:
- [PostCSS](https://postcss.org/) with [mantine-postcss-preset](https://mantine.dev/styles/postcss-preset)
- [TypeScript](https://www.typescriptlang.org/)
- [Storybook](https://storybook.js.org/)
- [Jest](https://jestjs.io/) setup with [React Testing Library](https://testing-library.com/docs/react-testing-library/intro)
- ESLint setup with [eslint-config-mantine](https://github.com/mantinedev/eslint-config-mantine)## npm scripts
### Build and dev scripts
- `dev` – start dev server
- `build` – bundle application for production
- `export` – exports static website to `out` folder
- `analyze` – analyzes application bundle with [@next/bundle-analyzer](https://www.npmjs.com/package/@next/bundle-analyzer)### Testing scripts
- `typecheck` – checks TypeScript types
- `lint` – runs ESLint
- `prettier:check` – checks files with Prettier
- `jest` – runs jest tests
- `jest:watch` – starts jest watch
- `test` – runs `jest`, `prettier:check`, `lint` and `typecheck` scripts### Other scripts
- `storybook` – starts storybook dev server
- `storybook:build` – build production storybook bundle to `storybook-static`
- `prettier:write` – formats all files with Prettier