51 lines
500 B
Text
51 lines
500 B
Text
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Development
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.env.local
|
|
.env.development
|
|
|
|
# Build artifacts (will be rebuilt)
|
|
dist/
|
|
build/
|
|
.vite/
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Development files
|
|
.git/
|
|
.github/
|
|
.gitignore
|
|
.editorconfig
|
|
.eslintrc*
|
|
.prettierrc*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Documentation
|
|
README.md
|
|
CHANGELOG.md
|
|
LICENSE
|
|
|
|
# Docker files
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|