Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # Step 1 - Project creation
  2. npx create-react-app react-project
  3.  
  4. # Step 2 - Linting, scripts, configuration
  5. npm install --save-dev eslint-config-prettier eslint-plugin-jest eslint-plugin-prettier prettier prop-types
  6.  
  7. # Step 3 - State management
  8. npm install redux react-redux immutable redux-immutable reselect
  9.  
  10. # Step 4 - Side effects
  11. npm install redux-saga axios dotenv
  12.  
  13. # Step 5 - Styling
  14. npm install styled-components
  15.  
  16. # Step 6 - Routing
  17. npm install connected-react-router react-router-dom history
  18.  
  19. # Step 7 - Testing
  20. npm install --save-dev react-testing-library jest-dom jest-styled-components
  21.  
  22. # Step 8 - Prototyping
  23. npm install --save-dev storybook @storybook/react require-context.macro @storybook/addons @storybook/addon-actions @storybook/addon-info @storybook/addon-viewport
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement