82 lines
922 B
Plaintext
82 lines
922 B
Plaintext
# Node modules
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build outputs
|
|
dist
|
|
build
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# Dependency directories
|
|
.npm
|
|
.eslintcache
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# Development files
|
|
*.md
|
|
LICENSE
|
|
docs/
|
|
examples/
|
|
test/
|
|
tests/
|
|
spec/
|
|
.github/
|
|
|
|
# Docker files (don't copy into container)
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Database files
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/ |