- Yarn
- Next.js
- TypeScript
- MUI + Styled Components
- Redux-Toolkit
- Cypress
- Husky
Please install the latest stable version of Node.js from this link.
After you've installed the Node.js, please run npm install --global yarn
to install the yarn package manager.
Please install the VS Code from the this link.
Please install the following extensions.
Note: Please DO NOT use package managers other than yarn! DO NOT use npm, pnpm etc.
You can bootstrap project with:
yarn dev // and type http://localhost:3000 from your browser
You can build the project with:
yarn build
To start the ‘builded’ project:
yarn start // and type http://localhost:3000 from your browser
.
├── public
└── src/
├── modules/
│ ├── common/
│ │ ├── assets
│ │ ├── components
│ │ ├── icons
│ │ ├── layouts
│ │ ├── providers
│ │ └── types
│ ├── core/
│ │ ├── hooks
│ │ ├── lib
│ │ ├── redux
│ │ └── utils
│ ├── maps/
│ │ ├── assets
│ │ ├── components
│ │ ├── hooks
│ │ ├── icons
│ │ ├── providers
│ │ ├── redux
│ │ ├── types
│ │ └── utils
│ └── locations/
│ ├── assets
│ ├── components
│ ├── icons
│ ├── redux
│ ├── types
│ └── utils
├── styles
└── pages