https://github.com/masb0ymas/nextine-admin
NextJS with Mantine UI
https://github.com/masb0ymas/nextine-admin
docker eslint mantine-ui nextjs prettier react-query standard-version
Last synced: 2 months ago
JSON representation
NextJS with Mantine UI
- Host: GitHub
- URL: https://github.com/masb0ymas/nextine-admin
- Owner: masb0ymas
- License: mit
- Created: 2022-10-06T03:38:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-01T09:17:46.000Z (almost 2 years ago)
- Last Synced: 2025-02-05T10:48:44.978Z (4 months ago)
- Topics: docker, eslint, mantine-ui, nextjs, prettier, react-query, standard-version
- Language: TypeScript
- Homepage:
- Size: 699 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Mantine Next Template
Get started with Mantine + Next with just a few button clicks.
Click `Use this template` button at the header of repository or [follow this link](https://github.com/mantinedev/mantine-next-template/generate) and
create new repository with `@mantine` packages. Note that you have to be logged in to GitHub to generate template.## Features
This template comes with several essential features:
- Server side rendering setup for Mantine
- Color scheme is stored in cookie to avoid color scheme mismatch after hydration
- Storybook with color scheme toggle
- Jest with react testing library
- 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