/ .gitignore
.gitignore
 1  # Dependencies
 2  node_modules/
 3  npm-debug.log*
 4  yarn-debug.log*
 5  yarn-error.log*
 6  pnpm-debug.log*
 7  
 8  # Production builds
 9  .next/
10  out/
11  build/
12  dist/
13  
14  # Environment variables
15  .env
16  .env.local
17  .env.development.local
18  .env.test.local
19  .env.production.local
20  
21  # IDE and editor files
22  .vscode/
23  .idea/
24  *.swp
25  *.swo
26  *~
27  
28  # OS generated files
29  .DS_Store
30  .DS_Store?
31  ._*
32  .Spotlight-V100
33  .Trashes
34  ehthumbs.db
35  Thumbs.db
36  
37  # Logs
38  logs
39  *.log
40  
41  # Runtime data
42  pids
43  *.pid
44  *.seed
45  *.pid.lock
46  
47  # Coverage directory used by tools like istanbul
48  coverage/
49  *.lcov
50  
51  # Dependency directories
52  jspm_packages/
53  
54  # Optional npm cache directory
55  .npm
56  
57  # Optional REPL history
58  .node_repl_history
59  
60  # Output of 'npm pack'
61  *.tgz
62  
63  # Yarn Integrity file
64  .yarn-integrity
65  
66  # Next.js
67  .next/
68  .vercel/
69  next-env.d.ts
70  
71  # Turbo
72  .turbo/
73  
74  # TypeScript
75  *.tsbuildinfo
76  next-env.d.ts
77  
78  # Local development
79  .env.local
80  .env.development.local
81  .env.test.local
82  .env.production.local
83  
84  # Temporary files
85  *.tmp
86  *.temp
87  
88  # Schema files
89  *schemas.json
90  *.json:Zone.Identifier
91  
92  # Windows files
93  Thumbs.db
94  
95  # Claude Code settings
96  .claude/