.gitignore 342 B

123456789101112131415161718192021222324252627
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. /node_modules
  4. # testing
  5. /coverage
  6. # production
  7. /build
  8. /dist
  9. # misc
  10. .DS_Store
  11. .env.local
  12. .env.development.local
  13. .env.test.local
  14. .env.production.local
  15. npm-debug.log*
  16. yarn-debug.log*
  17. yarn-error.log*
  18. *.orig
  19. package-lock.json
  20. .parcel-cache