Modern React application with best practices and common tools.
react_app/
├── public/
│ └── index.html
├── src/
│ ├── components/
│ ├── hooks/
│ ├── services/
│ ├── utils/
│ ├── styles/
│ ├── App.js
│ └── index.js
├── .env.example
├── .eslintrc.js
├── .prettierrc
├── package.json
└── README.md
npm install.env.example to .env and configurenpm startnpm run buildnpm testnpm run lintnpm start - Start development servernpm run build - Build for productionnpm test - Run testsnpm run lint - Run ESLintnpm run format - Format code with Prettier