79 lines
788 B
Plaintext
79 lines
788 B
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json.bak
|
|
|
|
# Production build
|
|
/build
|
|
/dist
|
|
|
|
# Testing
|
|
/coverage
|
|
*.test.js
|
|
*.test.jsx
|
|
*.spec.js
|
|
*.spec.jsx
|
|
**/__tests__/**
|
|
**/__mocks__/**
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
README.md
|
|
README-*
|
|
CHANGELOG.md
|
|
LICENSE
|
|
docs/
|
|
*.md
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
.circleci/
|
|
azure-pipelines.yml
|
|
|
|
# Development tools
|
|
.eslintrc*
|
|
.prettierrc*
|
|
.editorconfig
|
|
.nvmrc
|
|
|
|
# Misc
|
|
*.log
|
|
.nyc_output
|
|
.cache/
|