- ⚡️ Webpack
- ⚛️ React
- ⛑ TypeScript
- 📏 ESLint — To find and fix problems in your code
- 💖 Prettier — Code Formatter for consistent style
- 🐶 Husky — For running scripts before committing
- 🚓 Commitlint — To make sure the commit messages follow the convention
- 🖌 Renovate — To keep the dependencies up to date
- 🚫 lint-staged — Run ESLint and Prettier against staged Git files
- 👷 CI/CD - Deploy the application easily using Github Workflows
- ⚙️ EditorConfig - Consistent coding styles across editors and IDEs
- 🗂 Path Mapping — Import components or images using the
@
prefix
The information and data used in Cryptoscapes is provided kindly by the following sources:
- Add internationalization features (🌏 Third-party? or file-based?)
- Optimize bundling runtime, maybe Bun? (💡 Good-to-go but not important)
- SEO custom components, meta-data and json-ld (🧪 SEO optimization on google ranking)
- Image and Icon custom components that comply that WAI-ARIA convention
- Web Accessibility pre-caution for DX (🔰 Quite a feat)
- Node.js >= 14.16.0
.github
— GitHub configuration including the CI workflow.webpack
— Webpack configuration and bundling rules to compile it as a static files.test
— Test rules and configuration: TDD.public
— Static assets such as robots.txt, images, and favicon.src
— Application source code, including pages, components, styles.
yarn run dev
— Starts the application in development mode athttp://localhost:3000
.yarn run build
— Creates an optimized production build of your application.yarn run start
— Starts the application in production mode.
TypeScript are pre-configured with custom path mappings. To import components or files, use the @
prefix.
import { Button } from '@/components/Button';
// To import images or other files from the public folder
import avatar from '@/public/avatar.png';
This starter uses pnpm by default, but this choice is yours. If you'd like to switch to Yarn/npm, delete the yarn.lock
file, install the dependencies with Yarn/npm, change the CI workflow, and Husky Git hooks to use Yarn/npm commands.
This project is licensed under the MIT License - see the LICENSE.md file for more information.