.gitignore 2.5 KB

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