/ .gitignore
.gitignore
  1  # Logs
  2  logs
  3  *.log
  4  npm-debug.log*
  5  yarn-debug.log*
  6  yarn-error.log*
  7  lerna-debug.log*
  8  .pnpm-debug.log*
  9  
 10  # Diagnostic reports (https://nodejs.org/api/report.html)
 11  report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
 12  
 13  # Runtime data
 14  pids
 15  *.pid
 16  *.seed
 17  *.pid.lock
 18  
 19  # Directory for instrumented libs generated by jscoverage/JSCover
 20  lib-cov
 21  
 22  # Coverage directory used by tools like istanbul
 23  coverage
 24  *.lcov
 25  
 26  ## Environment files
 27  .env
 28  .env.local
 29  
 30  # nyc test coverage
 31  .nyc_output
 32  
 33  # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
 34  .grunt
 35  
 36  # Bower dependency directory (https://bower.io/)
 37  bower_components
 38  
 39  # node-waf configuration
 40  .lock-wscript
 41  
 42  # Compiled binary addons (https://nodejs.org/api/addons.html)
 43  build/Release
 44  
 45  # Dependency directories
 46  node_modules/
 47  jspm_packages/
 48  
 49  # Snowpack dependency directory (https://snowpack.dev/)
 50  web_modules/
 51  
 52  # TypeScript cache
 53  *.tsbuildinfo
 54  
 55  # Optional npm cache directory
 56  .npm
 57  *.lock
 58  
 59  # Optional eslint cache
 60  .eslintcache
 61  
 62  # Microbundle cache
 63  .rpt2_cache/
 64  .rts2_cache_cjs/
 65  .rts2_cache_es/
 66  .rts2_cache_umd/
 67  
 68  # Optional REPL history
 69  .node_repl_history
 70  
 71  # Output of 'npm pack'
 72  *.tgz
 73  
 74  # Yarn Integrity file
 75  .yarn-integrity
 76  
 77  # dotenv environment variables file
 78  .env
 79  .env.local
 80  .env.test
 81  .env.production
 82  
 83  # parcel-bundler cache (https://parceljs.org/)
 84  .cache
 85  .parcel-cache
 86  
 87  # Next.js build output
 88  .next
 89  out
 90  
 91  # Nuxt.js build / generate output
 92  .nuxt
 93  dist
 94  
 95  # Gatsby files
 96  .cache/
 97  # Comment in the public line in if your project uses Gatsby and not Next.js
 98  # https://nextjs.org/blog/next-9-1#public-directory-support
 99  # public
100  
101  # vuepress build output
102  .vuepress/dist
103  
104  # Serverless directories
105  .serverless/
106  
107  # FuseBox cache
108  .fusebox/
109  
110  # DynamoDB Local files
111  .dynamodb/
112  
113  # TernJS port file
114  .tern-port
115  
116  # Stores VSCode versions used for testing VSCode extensions
117  .vscode-test
118  
119  # yarn v2
120  .yarn/cache
121  .yarn/unplugged
122  .yarn/build-state.yml
123  .yarn/install-state.gz
124  .pnp.*
125  
126  # rescript files
127  .merlin
128  /lib
129  *.bs.js
130  .bsb.lock
131  
132  # OS
133  *.DS_STORE
134  .DS_STORE
135  # graphql-ppx
136  graphql_schema.json
137  .graphql_cache
138  .graphql_ppx_cache