58 lines
681 B
Plaintext
58 lines
681 B
Plaintext
# Dependencies
|
|
node_modules
|
|
|
|
# Build output
|
|
dist
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker files (não precisam estar dentro da imagem)
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Arquivos de lock (npm/yarn/pnpm)
|
|
package-lock.json
|
|
yarn.lock
|
|
# Mantém pnpm-lock.yaml pois é necessário para build reproduzível
|
|
|
|
# Documentação
|
|
*.md
|
|
README.md
|
|
|
|
# Environment files (usar apenas .env.example como referência)
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Cache
|
|
.cache
|
|
.eslintcache
|
|
.stylelintcache
|