119 lines
1.2 KiB
Plaintext
119 lines
1.2 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Production build
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# CI/CD files
|
|
.drone.yml
|
|
.github/
|
|
.gitlab-ci.yml
|
|
docker-compose*.yml
|
|
Dockerfile.dev
|
|
|
|
# Testing
|
|
jest.config.js
|
|
.jest/
|
|
__tests__/
|
|
**/*.test.js
|
|
**/*.test.ts
|
|
**/*.test.tsx
|
|
**/*.spec.js
|
|
**/*.spec.ts
|
|
**/*.spec.tsx
|
|
|
|
# Linting
|
|
.eslintrc*
|
|
.eslintignore
|
|
.prettierrc*
|
|
.prettierignore
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
tsconfig.json
|
|
|
|
# Storybook
|
|
.storybook/
|
|
storybook-static/
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Backend files (не нужны в frontend контейнере)
|
|
backend/
|
|
*.py
|
|
*.pyc
|
|
requirements.txt
|
|
manage.py
|
|
|
|
# Development scripts
|
|
scripts/
|
|
Makefile
|
|
|
|
# Design files
|
|
design/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Turbo
|
|
.turbo |