.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. firebase-debug.log*
  8. # Firebase cache
  9. .firebase/
  10. # Firebase config
  11. # Uncomment this if you'd like others to create their own Firebase project.
  12. # For a team working on the same Firebase project(s), it is recommended to leave
  13. # it commented so all members can deploy to the same project(s) in .firebaserc.
  14. # .firebaserc
  15. # Runtime data
  16. pids
  17. *.pid
  18. *.seed
  19. *.pid.lock
  20. # Directory for instrumented libs generated by jscoverage/JSCover
  21. lib-cov
  22. # Coverage directory used by tools like istanbul
  23. coverage
  24. # nyc test coverage
  25. .nyc_output
  26. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  27. .grunt
  28. # Bower dependency directory (https://bower.io/)
  29. bower_components
  30. # node-waf configuration
  31. .lock-wscript
  32. # Compiled binary addons (http://nodejs.org/api/addons.html)
  33. build/Release
  34. # Dependency directories
  35. node_modules/
  36. # Optional npm cache directory
  37. .npm
  38. # Optional eslint cache
  39. .eslintcache
  40. # Optional REPL history
  41. .node_repl_history
  42. # Output of 'npm pack'
  43. *.tgz
  44. # Yarn Integrity file
  45. .yarn-integrity
  46. # dotenv environment variables file
  47. .env