Stack:
- React
- React Hot Loader
- PropTypes
- Babel
- CSS Modules
- PostCSS
- postcss-preset-env
- Webpack
- ESLint
- stylelint
- Storybook
1 - Clone the project and install the dependencies:
$ git clone https://github.com/lucasjs/react-boilerplate.git
$ cd react-boilerplate
$ npm install
2 - Run development mode:
$ npm start
Open http://localhost:8080 to view it in the browser.
Build:
$ npm run build
Storybook:
$ npm run storybook
.
├── README.md
├── LICENSE
├── .storybook/
| ├── addons.js
| ├── config.js
| └── webpack.config.js
├── public/
| └── index.html
├── src/
| ├── components
| ├── stories/
| | └── index.js
| ├── App.css
| ├── App.js
| └── index.js
├── package-lock.json
├── package.json
├── webpack.config.js
├── yarn.lock
├── .babelrc
├── .editorconfig
├── .eslintrc.json
├── .stylelintrc
└── .gitignore