.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. # Firebase
  2. .firebase
  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. .pnpm-debug.log*
  12. # Diagnostic reports (https://nodejs.org/api/report.html)
  13. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  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. *.lcov
  24. # nyc test coverage
  25. .nyc_output
  26. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  27. .grunt
  28. # Bower dependency directory (https://bower.io/)
  29. bower_components
  30. # node-waf configuration
  31. .lock-wscript
  32. # Compiled binary addons (https://nodejs.org/api/addons.html)
  33. build/Release
  34. # Dependency directories
  35. node_modules/
  36. jspm_packages/
  37. # TypeScript v1 declaration files
  38. typings/
  39. # Snowpack dependency directory (https://snowpack.dev/)
  40. web_modules/
  41. # TypeScript cache
  42. *.tsbuildinfo
  43. # Optional npm cache directory
  44. .npm
  45. # Optional eslint cache
  46. .eslintcache
  47. # Optional stylelint cache
  48. .stylelintcache
  49. # Microbundle cache
  50. .rpt2_cache/
  51. .rts2_cache_cjs/
  52. .rts2_cache_es/
  53. .rts2_cache_umd/
  54. # Optional REPL history
  55. .node_repl_history
  56. # Output of 'npm pack'
  57. *.tgz
  58. # Yarn Integrity file
  59. .yarn-integrity
  60. # dotenv environment variable files
  61. .env
  62. .env.development.local
  63. .env.test.local
  64. .env.production.local
  65. .env.local
  66. # parcel-bundler cache (https://parceljs.org/)
  67. .cache
  68. .parcel-cache
  69. # Next.js build output
  70. .next
  71. out
  72. # Nuxt.js build / generate output
  73. .nuxt
  74. dist
  75. # Gatsby files
  76. .cache/
  77. # Comment in the public line in if your project uses Gatsby and not Next.js
  78. # https://nextjs.org/blog/next-9-1#public-directory-support
  79. # public
  80. # vuepress build output
  81. .vuepress/dist
  82. # vuepress v2.x temp and cache directory
  83. .temp
  84. # Docusaurus cache and generated files
  85. .docusaurus
  86. # Serverless directories
  87. .serverless/
  88. # FuseBox cache
  89. .fusebox/
  90. # DynamoDB Local files
  91. .dynamodb/
  92. # TernJS port file
  93. .tern-port
  94. # Stores VSCode versions used for testing VSCode extensions
  95. .vscode-test
  96. # yarn v2
  97. .yarn/cache
  98. .yarn/unplugged
  99. .yarn/build-state.yml
  100. .yarn/install-state.gz
  101. .pnp.*
  102. ### Node Patch ###
  103. # Serverless Webpack directories
  104. .webpack/
  105. # SvelteKit build / generate output
  106. .svelte-kit
  107. # IDE / Editor
  108. .idea
  109. # Service worker
  110. sw.*
  111. # Mac OSX
  112. .DS_Store
  113. # Vim swap files
  114. *.swp
  115. # Build data
  116. .hoppscotch
  117. # File explorer
  118. .directory
  119. # Tests screenshots
  120. tests/*/screenshots
  121. # Tests videos
  122. tests/*/videos
  123. # Local Netlify folder
  124. .netlify
  125. # PNPM
  126. .pnpm-store
  127. # GQL SDL generated for the frontends
  128. gql-gen/