Skip to content

Latest commit

 

History

History
79 lines (66 loc) · 2.04 KB

README.md

File metadata and controls

79 lines (66 loc) · 2.04 KB

React Boilerplate

David GitHub repo size GitHub GitHub last commit

Stack:

Run the project locally

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.

Scripts

Build:

$ npm run build

Storybook:

$ npm run storybook

Folders

.
├── 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