[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
2.2 KiB

5 years ago
5 years ago
5 years ago
  1. dist/
  2. # Created by https://www.gitignore.io/api/node,macos,windows
  3. # Edit at https://www.gitignore.io/?templates=node,macos,windows
  4. ### macOS ###
  5. # General
  6. .DS_Store
  7. .AppleDouble
  8. .LSOverride
  9. # Icon must end with two \r
  10. Icon
  11. # Thumbnails
  12. ._*
  13. # Files that might appear in the root of a volume
  14. .DocumentRevisions-V100
  15. .fseventsd
  16. .Spotlight-V100
  17. .TemporaryItems
  18. .Trashes
  19. .VolumeIcon.icns
  20. .com.apple.timemachine.donotpresent
  21. # Directories potentially created on remote AFP share
  22. .AppleDB
  23. .AppleDesktop
  24. Network Trash Folder
  25. Temporary Items
  26. .apdisk
  27. ### Node ###
  28. # Logs
  29. logs
  30. *.log
  31. npm-debug.log*
  32. yarn-debug.log*
  33. yarn-error.log*
  34. lerna-debug.log*
  35. # Diagnostic reports (https://nodejs.org/api/report.html)
  36. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  37. # Runtime data
  38. pids
  39. *.pid
  40. *.seed
  41. *.pid.lock
  42. # Directory for instrumented libs generated by jscoverage/JSCover
  43. lib-cov
  44. # Coverage directory used by tools like istanbul
  45. coverage
  46. *.lcov
  47. # nyc test coverage
  48. .nyc_output
  49. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  50. .grunt
  51. # Bower dependency directory (https://bower.io/)
  52. bower_components
  53. # node-waf configuration
  54. .lock-wscript
  55. # Compiled binary addons (https://nodejs.org/api/addons.html)
  56. build/Release
  57. # Dependency directories
  58. node_modules/
  59. jspm_packages/
  60. # TypeScript v1 declaration files
  61. typings/
  62. # TypeScript cache
  63. *.tsbuildinfo
  64. # Optional npm cache directory
  65. .npm
  66. # Optional eslint cache
  67. .eslintcache
  68. # Optional REPL history
  69. .node_repl_history
  70. # Output of 'npm pack'
  71. *.tgz
  72. # Yarn Integrity file
  73. .yarn-integrity
  74. # dotenv environment variables file
  75. .env
  76. .env.test
  77. # parcel-bundler cache (https://parceljs.org/)
  78. .cache
  79. # next.js build output
  80. .next
  81. # nuxt.js build output
  82. .nuxt
  83. # vuepress build output
  84. .vuepress/dist
  85. # Serverless directories
  86. .serverless/
  87. # FuseBox cache
  88. .fusebox/
  89. # DynamoDB Local files
  90. .dynamodb/
  91. ### Windows ###
  92. # Windows thumbnail cache files
  93. Thumbs.db
  94. Thumbs.db:encryptable
  95. ehthumbs.db
  96. ehthumbs_vista.db
  97. # Dump file
  98. *.stackdump
  99. # Folder config file
  100. [Dd]esktop.ini
  101. # Recycle Bin used on file shares
  102. $RECYCLE.BIN/
  103. # Windows Installer files
  104. *.cab
  105. *.msi
  106. *.msix
  107. *.msm
  108. *.msp
  109. # Windows shortcuts
  110. *.lnk
  111. # End of https://www.gitignore.io/api/node,macos,windows