boilerplate.sh 469 B

123456789101112131415161718192021222324252627
  1. #!/bin/bash
  2. echo "installing dependencies..."
  3. yarn add --exact \
  4. cross-env \
  5. react \
  6. react-dom \
  7. react-redux \
  8. redux \
  9. redux-thunk
  10. yarn add --exact --dev \
  11. babel-cli \
  12. babel-core \
  13. babel-loader \
  14. babel-plugin-transform-object-rest-spread \
  15. babel-plugin-transform-remove-console \
  16. babel-plugin-transform-runtime \
  17. babel-preset-env \
  18. babel-preset-react \
  19. nodemon \
  20. tape-promise \
  21. tape \
  22. webpack