.gitignore 1.1 KB

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