76 lines
774 B
Plaintext
76 lines
774 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output (we build inside Docker)
|
|
build/
|
|
dist/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Environment files (will be passed as build args)
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.development.local
|
|
.env.test
|
|
.env.test.local
|
|
.env.production
|
|
.env.production.local
|
|
*.env
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.docker/
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# ESLint cache
|
|
.eslintcache
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Yarn
|
|
.yarn-integrity
|
|
.pnp.*
|
|
|
|
# Storybook
|
|
storybook-static/
|
|
|
|
# Design files (if any)
|
|
.superdesign/
|