.
├── README.md
├── app
│ ├── 404.html
│ ├── actions
│ │ └── index.js
│ ├── components
│ │ ├── App
│ │ │ └── index.js
│ │ ├── Footer
│ │ │ └── index.js
│ │ ├── Navigation
│ │ │ └── index.js
│ │ ├── Routes
│ │ │ └── index.js
│ ├── constants
│ │ └── action-types.js
│ ├── index.html
│ ├── index.js
│ └── reducers
│ ├── index.js
├── assets
│ ├── favicon.ico
│ └── styles
│ ├── components
│ │ ├── App.scss
│ └── index.scss
├── dist
│ └── report.html
├── package.json
├── webpack.config.build.js
├── webpack.config.dev.js
├── webpack.config.js
You only need node.js pre-installed and you’re good to go.
Install dependencies
$ yarn install
Run the local webpack-dev-server with livereload and autocompile on http://localhost:8081/
$ yarn dev
Build the current application
$ yarn build
Check the stats of the bundle
$ yarn stats