157 lines
2.0 KiB
Plaintext
157 lines
2.0 KiB
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# ===================
|
|
# Dependencies
|
|
# ===================
|
|
node_modules/
|
|
/.pnp
|
|
.pnp.js
|
|
.yarn/install-state.gz
|
|
.yarn/cache
|
|
.yarn/unplugged
|
|
.yarn/build-state.yml
|
|
.yarn/install-state.gz
|
|
package-lock.json
|
|
yarn.lock
|
|
bun.lockb
|
|
|
|
# ===================
|
|
# Next.js
|
|
# ===================
|
|
/.next/
|
|
/out/
|
|
/build/
|
|
.next
|
|
out
|
|
|
|
# ===================
|
|
# Production
|
|
# ===================
|
|
/dist/
|
|
*.min.js
|
|
*.min.css
|
|
|
|
# ===================
|
|
# Testing
|
|
# ===================
|
|
/coverage/
|
|
.nyc_output
|
|
*.lcov
|
|
jest-results.json
|
|
|
|
# ===================
|
|
# TypeScript
|
|
# ===================
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
tsconfig.tsbuildinfo
|
|
|
|
# ===================
|
|
# Environment Variables
|
|
# ===================
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
!.env.example
|
|
|
|
# ===================
|
|
# IDE & Editors
|
|
# ===================
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.code-workspace
|
|
|
|
# ===================
|
|
# OS Generated Files
|
|
# ===================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# ===================
|
|
# Logs
|
|
# ===================
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# ===================
|
|
# Cache
|
|
# ===================
|
|
.cache/
|
|
.parcel-cache/
|
|
.eslintcache
|
|
.stylelintcache
|
|
*.cache
|
|
.turbo/
|
|
.pnpm-store/
|
|
|
|
# ===================
|
|
# Vercel
|
|
# ===================
|
|
.vercel
|
|
|
|
# ===================
|
|
# Debug
|
|
# ===================
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
|
|
# ===================
|
|
# Misc
|
|
# ===================
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
*.orig
|
|
.temp/
|
|
.tmp/
|
|
tmp/
|
|
temp/
|
|
|
|
# ===================
|
|
# Storybook
|
|
# ===================
|
|
storybook-static/
|
|
|
|
# ===================
|
|
# PWA
|
|
# ===================
|
|
public/sw.js
|
|
public/workbox-*.js
|
|
public/sw.js.map
|
|
public/workbox-*.js.map
|
|
|
|
# ===================
|
|
# Sentry
|
|
# ===================
|
|
.sentryclirc
|
|
|
|
# ===================
|
|
# Docker
|
|
# ===================
|
|
docker-compose.override.yml
|