.gitignore 922 B

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