This project is a boilerplate to start react project with TypeScript.
$ git clone [email protected]:Epimodev/react-parcel-boilerplate.git myProjectName # clone project
$ cd myProjectName
$ rm -rf .git # remove git folder
$ git init # init git for the project
$ yarn # install dependencies
$ yarn start # will create dev server on port 1234
$ yarn check-types --watch # --watch is optional
$ yarn test
# this command will format code with prettier and made tslint check
# then you'll have a commitizen prompt to generate the commit message
$ yarn commit
$ yarn build