.gitignore 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # Created by https://www.gitignore.io/api/node
  2. # Edit at https://www.gitignore.io/?templates=node
  3. ### Node ###
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. lerna-debug.log*
  11. # Diagnostic reports (https://nodejs.org/api/report.html)
  12. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  13. # Runtime data
  14. pids
  15. *.pid
  16. *.seed
  17. *.pid.lock
  18. # Directory for instrumented libs generated by jscoverage/JSCover
  19. lib-cov
  20. # Coverage directory used by tools like istanbul
  21. coverage
  22. *.lcov
  23. # nyc test coverage
  24. .nyc_output
  25. # Grunt intermediate storage (https://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 (https://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. # TypeScript cache
  39. *.tsbuildinfo
  40. # Optional npm cache directory
  41. .npm
  42. # Optional eslint cache
  43. .eslintcache
  44. # Optional REPL history
  45. .node_repl_history
  46. # Output of 'npm pack'
  47. *.tgz
  48. # Yarn Integrity file
  49. .yarn-integrity
  50. # dotenv environment variables file
  51. .env
  52. .env.test
  53. # parcel-bundler cache (https://parceljs.org/)
  54. .cache
  55. # next.js build output
  56. .next
  57. # nuxt.js build output
  58. .nuxt
  59. # react / gatsby
  60. public/
  61. # vuepress build output
  62. .vuepress/dist
  63. # Serverless directories
  64. .serverless/
  65. # FuseBox cache
  66. .fusebox/
  67. # DynamoDB Local files
  68. .dynamodb/
  69. # End of https://www.gitignore.io/api/node