...
You need to have node and yarn installed to run this project locally.
# git clone project locally
# install required packages (node modules)
yarn
# start project with hot reload
yarn start
# build code
yarn build
# start application with node js debugger enabled
# after that you can for example connect into it with your Editor (phpstorm/webstorm> Attach to Node.js/Chrome)
yarn start-debugger
# run linter (tslint + prettier)
yarn lint
# run prettier (it will be also done automatically in git hook before commit)
yarn prettier