This project Is bootstrapped with Create React App and using tailwindcss for UI library.
This project usages Yarn as package manager and in the project directory, you can run:
Script | Description |
---|---|
start:dev |
Starts the development server |
build |
Production build |
test |
Runs unit tests |
eject |
React Eject |
lint |
Shows all the linting errors in codebase |
lint:fix |
Fix all the liting errors |
Husky hooks will lint code before commiting it.
A quick look at the top-level files and directories you'll see in this project.
├── .vscode
├── node_modules
├── public
├── src
├── assets
├── components
├── container
├── context
├── pages
├── routes
├── utils
├── _redirects
├── netlify.toml
├── .eslintrc.json
├── .gitignore
├── .prettierrc
├── craco.config.js
├── package.json
├── README.md
├── tailwind.config.js
└── yarn.lock
.vscode/
: This directory contains all of the workspace setting for vscode.