.gitignore 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. dst
  2. *.sqlite
  3. authCode
  4. # Created by https://www.gitignore.io/api/node
  5. ### Node ###
  6. # Logs
  7. logs
  8. *.log
  9. npm-debug.log*
  10. yarn-debug.log*
  11. yarn-error.log*
  12. # Runtime data
  13. pids
  14. *.pid
  15. *.seed
  16. *.pid.lock
  17. # Directory for instrumented libs generated by jscoverage/JSCover
  18. lib-cov
  19. # Coverage directory used by tools like istanbul
  20. coverage
  21. # nyc test coverage
  22. .nyc_output
  23. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  24. .grunt
  25. # Bower dependency directory (https://bower.io/)
  26. bower_components
  27. # node-waf configuration
  28. .lock-wscript
  29. # Compiled binary addons (http://nodejs.org/api/addons.html)
  30. build/Release
  31. # Dependency directories
  32. node_modules/
  33. jspm_packages/
  34. # Typescript v1 declaration files
  35. typings/
  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
  48. # End of https://www.gitignore.io/api/node