.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. # Dependencies
  2. **/node_modules
  3. .pnpm-store/
  4. # Build outputs
  5. dist/
  6. build/
  7. *.dist
  8. # Environment variables
  9. .env
  10. .env.*
  11. .env.local
  12. .env.development.local
  13. .env.test.local
  14. .env.production.local
  15. .env.production
  16. # IDE and editor files
  17. .vscode/
  18. .idea/
  19. *.swp
  20. *.swo
  21. *~
  22. # OS generated files
  23. .DS_Store
  24. .DS_Store?
  25. ._*
  26. .Spotlight-V100
  27. .Trashes
  28. ehthumbs.db
  29. Thumbs.db
  30. # Logs
  31. logs
  32. *.log
  33. npm-debug.log*
  34. yarn-debug.log*
  35. yarn-error.log*
  36. pnpm-debug.log*
  37. lerna-debug.log*
  38. # Runtime data
  39. pids
  40. *.pid
  41. *.seed
  42. *.pid.lock
  43. *.bak
  44. # Coverage directory used by tools like istanbul
  45. coverage/
  46. *.lcov
  47. # nyc test coverage
  48. .nyc_output
  49. # Dependency directories
  50. jspm_packages/
  51. # TypeScript cache
  52. *.tsbuildinfo
  53. # Optional npm cache directory
  54. .npm
  55. # Optional eslint cache
  56. .eslintcache
  57. # Microbundle cache
  58. .rpt2_cache/
  59. .rts2_cache_cjs/
  60. .rts2_cache_es/
  61. .rts2_cache_umd/
  62. # Optional REPL history
  63. .node_repl_history
  64. # Output of 'npm pack'
  65. *.tgz
  66. # Yarn Integrity file
  67. .yarn-integrity
  68. # parcel-bundler cache (https://parceljs.org/)
  69. .cache
  70. .parcel-cache
  71. # Next.js build output
  72. .next
  73. # Nuxt.js build / generate output
  74. .nuxt
  75. # Gatsby files
  76. .cache/
  77. # Storybook build outputs
  78. .out
  79. .storybook-out
  80. # Temporary folders
  81. tmp/
  82. temp/
  83. # Database
  84. *.db
  85. *.sqlite
  86. *.sqlite3
  87. # Webdev artifacts (checkpoint zips, migrations, etc.)
  88. .webdev/
  89. # Local tool state
  90. .omc/
  91. .claude/
  92. # Manus version file (auto-generated, not part of source)
  93. client/public/__manus__/version.json
  94. deploy/node_modules/
  95. deploy/package*.json