Baseline react webpack project that supports PostCSS and ES7 out of the box. Here are some of the features included:
- Redux store and thunk for async operations.
- ESLint for code linting
- JEST for unit testing
To Get Started, Install dependencies by running this command.
npm install
To Test and Develop. Web server will be accessed via http://localhost:8080
npm run start
To Create a build. Compiled code will be in dist folder.
npm run build
To test out serve your build. Web server will be accessed via http://localhost:3001
npm run serve-build
To Lint your code. Lint report will be available http://localhost:8080/lint.html
npm run lint
To run your unit tests.
npm run test