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