/ .gitignore
.gitignore
 1  # Emacs
 2  *~
 3  
 4  # Node modules
 5  node_modules/
 6  
 7  # Logs
 8  logs
 9  *.log
10  npm-debug.log*
11  
12  # Coverage directory used by tools like istanbul
13  coverage
14  *.lcov
15  
16  # nyc test coverage
17  .nyc_output
18  
19  # Compiled binary addons (https://nodejs.org/api/addons.html)
20  build/Release
21  
22  # TypeScript cache
23  *.tsbuildinfo
24  
25  # Optional npm cache directory
26  .npm
27  
28  # Optional eslint cache
29  .eslintcache
30  
31  # Optional REPL history
32  .node_repl_history
33  
34  # Output of 'npm pack'
35  *.tgz
36  
37  # dotenv environment variables file
38  .env
39  .env.test
40  .env.*.local
41  
42  # Build cache
43  .vercel
44  .vinxi