.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. # Coverage directory used by tools like istanbul
  8. coverage
  9. # nyc test coverage
  10. .nyc_output
  11. # Node Modules
  12. node_modules/
  13. # Secrets
  14. *.env*
  15. # Logs
  16. logs
  17. *.log
  18. npm-debug.log*
  19. yarn-debug.log*
  20. yarn-error.log*
  21. lerna-debug.log*
  22. # Runtime data
  23. pids
  24. *.pid
  25. *.seed
  26. *.pid.lock
  27. # Directory for instrumented libs generated by jscoverage/JSCover
  28. lib-cov
  29. # Coverage directory used by tools like istanbul
  30. .coverage
  31. .jest-cache
  32. # nyc test coverage
  33. .nyc_output
  34. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  35. .grunt
  36. # Bower dependency directory (https://bower.io/)
  37. bower_components
  38. # node-waf configuration
  39. .lock-wscript
  40. # Compiled binary addons (http://nodejs.org/api/addons.html)
  41. build/Release
  42. # Dependency directories
  43. node_modules/
  44. jspm_packages/
  45. # Typescript v1 declaration files
  46. typings/
  47. # Optional npm cache directory
  48. .npm
  49. # Optional eslint cache
  50. .eslintcache
  51. # Optional REPL history
  52. .node_repl_history
  53. # Output of 'npm pack'
  54. *.tgz
  55. # cache and distribution folders
  56. .parcel-cache
  57. .cache/
  58. .now
  59. dist/
  60. storybook-static
  61. # Mac files
  62. .DS_Store
  63. # Yarn
  64. yarn-error.log
  65. .pnp/
  66. .pnp.js
  67. .yarn
  68. .yarnrc.yml
  69. # Yarn Integrity file
  70. .yarn-integrity