.gitignore 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # production
  2. /build
  3. # Logs
  4. logs
  5. *.log
  6. npm-debug.log*
  7. yarn-debug.log*
  8. yarn-error.log*
  9. # Runtime data
  10. pids
  11. *.pid
  12. *.seed
  13. *.pid.lock
  14. # Directory for instrumented libs generated by jscoverage/JSCover
  15. lib-cov
  16. # Coverage directory used by tools like istanbul
  17. coverage
  18. # nyc test coverage
  19. .nyc_output
  20. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  21. .grunt
  22. # Bower dependency directory (https://bower.io/)
  23. bower_components
  24. # node-waf configuration
  25. .lock-wscript
  26. # Compiled binary addons (http://nodejs.org/api/addons.html)
  27. build/Release
  28. # Dependency directories
  29. node_modules/
  30. jspm_packages/
  31. # Typescript v1 declaration files
  32. typings/
  33. # Optional npm cache directory
  34. .npm
  35. # Optional eslint cache
  36. .eslintcache
  37. # Optional REPL history
  38. .node_repl_history
  39. # Output of 'npm pack'
  40. *.tgz
  41. # Yarn Integrity file
  42. .yarn-integrity
  43. # dotenv environment variables file
  44. .env
  45. # misc
  46. .DS_Store
  47. .env.local
  48. .env.development.local
  49. .env.test.local
  50. .env.production.local