This project is an assignment provided by Corner Case Technologies.
This boilerplate features all the latest tools and practices in the industry.
- ⚛ React — 16.7.0-alpha.0 with Hooks
- ♻ Redux — State Management
- 🛠 Babel — ES6 syntax, Airbnb & React/Recommended config
- 🚀 Webpack — Hot Reloading, Code Splitting, Optimized Build
- 💅 CSS — Styled Components
- ✅ Tests — Jest, React Testing Library & Cypress
- 💖 Lint — ESlint
- Clone this repo using
https://github.com/Kushagraagarwal/corner_case.git
- Move to the appropriate directory:
cd corner_case
. - Run
yarn
ornpm install
to install dependencies. - Run
npm start
to see the example app athttp://localhost:8080
.
npm start
- start the dev servernpm run build
- create a production ready build indist
foldernpm run lint
- execute an eslint checknpm run lint:fix
- execute an eslint and fix the errorsnpm test
- run all tests