58 lines
612 B
Plaintext
58 lines
612 B
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
Dockerfile
|
|
|
|
# Development files
|
|
.dockerignore
|
|
.editorconfig
|
|
.eslintrc
|
|
.stylelintrc
|
|
.prettierrc
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# docs/
|
|
README.md
|
|
LICENSE
|
|
CHANGELOG.md
|
|
*.md
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Test files
|
|
__tests__/
|
|
test/
|
|
tests/
|
|
coverage/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
|
|
# Environment files
|
|
# We need .env for our application
|
|
#.env
|
|
.env.*
|
|
|
|
|
|
# Project specific files
|
|
labels.example
|
|
virt-game-timer.service
|
|
package.json
|
|
package-lock.json |