.gitignore 925 B

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