.gitignore 1022 B

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