91 lines
934 B
Plaintext
91 lines
934 B
Plaintext
# Node.js
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 환경 파일
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# 로그 파일
|
|
logs
|
|
*.log
|
|
|
|
# 런타임 데이터
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# 커버리지 디렉토리
|
|
lib-cov
|
|
coverage
|
|
.nyc_output
|
|
|
|
# 의존성 디렉토리
|
|
jspm_packages/
|
|
|
|
# 선택적 npm 캐시 디렉토리
|
|
.npm
|
|
|
|
# 선택적 eslint 캐시
|
|
.eslintcache
|
|
|
|
# Microbundle 캐시
|
|
.rpt2_cache/
|
|
.rts2_cache_cjs/
|
|
.rts2_cache_es/
|
|
.rts2_cache_umd/
|
|
|
|
# 선택적 REPL 히스토리
|
|
.node_repl_history
|
|
|
|
# yarn v2
|
|
.yarn/cache
|
|
.yarn/unplugged
|
|
.yarn/build-state.yml
|
|
.yarn/install-state.gz
|
|
.pnp.*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# 문서
|
|
README.md
|
|
*.md
|
|
|
|
# 테스트 파일
|
|
test/
|
|
*.test.js
|
|
*.spec.js
|
|
|
|
# 기타
|
|
.tmp
|
|
.temp
|