| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- # Logs
- logs
- *.log
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- lerna-debug.log*
- # Node modules
- node_modules/
- .pnpm-store/
- # Build output
- dist/
- dist-ssr/
- build/
- # Environment files
- .env
- .env.local
- .env.development.local
- .env.test.local
- .env.production.local
- # Editor directories and files
- .vscode/*
- !.vscode/extensions.json
- .idea/
- .DS_Store
- *.suo
- *.ntvs*
- *.njsproj
- *.sln
- *.sw?
- # Cache
- .cache/
- .temp/
- .tmp/
- # OS
- Thumbs.db
- .DS_Store
- # IDE
- .vscode/
- .idea/
- *.swp
- *.swo
- # Testing
- coverage/
- .nyc_output/
- # Runtime data
- pids
- *.pid
- *.seed
- *.pid.lock
- # Dependency directories
- jspm_packages/
- # TypeScript cache
- *.tsbuildinfo
- # Optional npm cache directory
- .npm
- # Optional eslint cache
- .eslintcache
- # Optional stylelint cache
- .stylelintcache
- # Microbundle cache
- .rpt2_cache/
- .rts2_cache_cjs/
- .rts2_cache_es/
- .rts2_cache_umd/
- # Optional REPL history
- .node_repl_history
- # Output of 'npm pack'
- *.tgz
- # Yarn Integrity file
- .yarn-integrity
- # Stores VSCode versions used for testing VSCode extensions
- .vscode-test
- # Webpack
- .webpack/
- .webpack_cache/
-
- package-lock.json
|