The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

186 lines
5.7 KiB

  1. {
  2. "name": "mastodon",
  3. "license": "AGPL-3.0-or-later",
  4. "engines": {
  5. "node": ">=8 <11"
  6. },
  7. "scripts": {
  8. "postversion": "git push --tags",
  9. "build:development": "cross-env RAILS_ENV=development NODE_ENV=development ./bin/webpack",
  10. "build:production": "cross-env RAILS_ENV=production NODE_ENV=production ./bin/webpack",
  11. "manage:translations": "node ./config/webpack/translationRunner.js",
  12. "start": "node ./streaming/index.js",
  13. "test": "${npm_execpath} run test:lint && ${npm_execpath} run test:jest",
  14. "test:lint": "eslint --ext=js .",
  15. "test:jest": "cross-env NODE_ENV=test jest --coverage"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/tootsuite/mastodon.git"
  20. },
  21. "browserslist": [
  22. "last 2 versions",
  23. "IE >= 11",
  24. "iOS >= 9",
  25. "not dead"
  26. ],
  27. "jest": {
  28. "projects": [
  29. "<rootDir>/app/javascript/mastodon"
  30. ],
  31. "testPathIgnorePatterns": [
  32. "<rootDir>/node_modules/",
  33. "<rootDir>/vendor/",
  34. "<rootDir>/config/",
  35. "<rootDir>/log/",
  36. "<rootDir>/public/",
  37. "<rootDir>/tmp/"
  38. ],
  39. "setupFiles": [
  40. "raf/polyfill"
  41. ],
  42. "setupFilesAfterEnv": [
  43. "<rootDir>/app/javascript/mastodon/test_setup.js"
  44. ],
  45. "collectCoverageFrom": [
  46. "app/javascript/mastodon/**/*.js",
  47. "!app/javascript/mastodon/features/emoji/emoji_compressed.js",
  48. "!app/javascript/mastodon/locales/locale-data/*.js",
  49. "!app/javascript/mastodon/service_worker/entry.js",
  50. "!app/javascript/mastodon/test_setup.js"
  51. ],
  52. "coverageDirectory": "<rootDir>/coverage",
  53. "moduleDirectories": [
  54. "<rootDir>/node_modules",
  55. "<rootDir>/app/javascript"
  56. ]
  57. },
  58. "private": true,
  59. "dependencies": {
  60. "@babel/core": "^7.3.4",
  61. "@babel/plugin-proposal-class-properties": "^7.3.4",
  62. "@babel/plugin-proposal-decorators": "^7.3.0",
  63. "@babel/plugin-proposal-object-rest-spread": "^7.3.4",
  64. "@babel/plugin-syntax-dynamic-import": "^7.2.0",
  65. "@babel/plugin-transform-react-inline-elements": "^7.2.0",
  66. "@babel/plugin-transform-react-jsx-self": "^7.2.0",
  67. "@babel/plugin-transform-react-jsx-source": "^7.2.0",
  68. "@babel/plugin-transform-runtime": "^7.3.4",
  69. "@babel/preset-env": "^7.3.4",
  70. "@babel/preset-react": "^7.0.0",
  71. "@babel/runtime": "^7.3.4",
  72. "@gfx/zopfli": "^1.0.11",
  73. "array-includes": "^3.0.3",
  74. "autoprefixer": "^9.4.10",
  75. "axios": "^0.18.0",
  76. "babel-loader": "^8.0.5",
  77. "babel-plugin-lodash": "^3.3.4",
  78. "babel-plugin-preval": "^3.0.1",
  79. "babel-plugin-react-intl": "^3.0.1",
  80. "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
  81. "babel-runtime": "^6.26.0",
  82. "classnames": "^2.2.5",
  83. "compression-webpack-plugin": "^2.0.0",
  84. "cross-env": "^5.1.4",
  85. "css-loader": "^2.1.1",
  86. "cssnano": "^4.1.10",
  87. "detect-passive-events": "^1.0.2",
  88. "dotenv": "^6.2.0",
  89. "emoji-mart": "Gargron/emoji-mart#build",
  90. "es6-symbol": "^3.1.1",
  91. "escape-html": "^1.0.3",
  92. "exif-js": "^2.3.0",
  93. "express": "^4.16.4",
  94. "fibers": "^3.1.1",
  95. "file-loader": "^3.0.1",
  96. "font-awesome": "^4.7.0",
  97. "glob": "^7.1.1",
  98. "history": "^4.7.2",
  99. "http-link-header": "^1.0.2",
  100. "immutable": "^3.8.2",
  101. "imports-loader": "^0.8.0",
  102. "intersection-observer": "^0.5.1",
  103. "intl": "^1.2.5",
  104. "intl-messageformat": "^2.2.0",
  105. "intl-relativeformat": "^2.1.0",
  106. "is-nan": "^1.2.1",
  107. "js-yaml": "^3.11.0",
  108. "lodash": "^4.7.11",
  109. "mark-loader": "^0.1.6",
  110. "marky": "^1.2.1",
  111. "mini-css-extract-plugin": "^0.5.0",
  112. "mkdirp": "^0.5.1",
  113. "npmlog": "^4.1.2",
  114. "object-assign": "^4.1.1",
  115. "object-fit-images": "^3.2.3",
  116. "object.values": "^1.0.4",
  117. "offline-plugin": "^5.0.6",
  118. "path-complete-extname": "^1.0.0",
  119. "pg": "^6.4.0",
  120. "postcss-loader": "^3.0.0",
  121. "postcss-object-fit-images": "^1.1.2",
  122. "prop-types": "^15.5.10",
  123. "punycode": "^2.1.0",
  124. "rails-ujs": "^5.2.2",
  125. "react": "^16.7.0",
  126. "react-dom": "^16.7.0",
  127. "react-hotkeys": "^1.1.4",
  128. "react-immutable-proptypes": "^2.1.0",
  129. "react-immutable-pure-component": "^1.1.1",
  130. "react-intl": "^2.7.2",
  131. "react-masonry-infinite": "^1.2.2",
  132. "react-motion": "^0.5.2",
  133. "react-notification": "^6.8.4",
  134. "react-overlays": "^0.8.3",
  135. "react-redux": "^6.0.0",
  136. "react-redux-loading-bar": "^4.0.8",
  137. "react-router-dom": "^4.1.1",
  138. "react-router-scroll-4": "^1.0.0-beta.1",
  139. "react-select": "^2.2.0",
  140. "react-sparklines": "^1.7.0",
  141. "react-swipeable-views": "^0.13.0",
  142. "react-textarea-autosize": "^7.1.0",
  143. "react-toggle": "^4.0.1",
  144. "redis": "^2.7.1",
  145. "redux": "^4.0.1",
  146. "redux-immutable": "^4.0.0",
  147. "redux-thunk": "^2.2.0",
  148. "rellax": "^1.7.1",
  149. "requestidlecallback": "^0.3.0",
  150. "reselect": "^4.0.0",
  151. "rimraf": "^2.6.1",
  152. "sass": "^1.17.2",
  153. "sass-loader": "^7.0.3",
  154. "stringz": "^1.0.0",
  155. "substring-trie": "^1.0.2",
  156. "throng": "^4.0.0",
  157. "tiny-queue": "^0.2.1",
  158. "uglifyjs-webpack-plugin": "^2.1.2",
  159. "uuid": "^3.1.0",
  160. "uws": "10.148.0",
  161. "webpack": "^4.29.6",
  162. "webpack-assets-manifest": "^3.1.1",
  163. "webpack-bundle-analyzer": "^3.1.0",
  164. "webpack-cli": "^3.2.3",
  165. "webpack-merge": "^4.2.1",
  166. "websocket.js": "^0.1.12"
  167. },
  168. "devDependencies": {
  169. "babel-eslint": "^10.0.1",
  170. "babel-jest": "^24.5.0",
  171. "enzyme": "^3.8.0",
  172. "enzyme-adapter-react-16": "^1.7.1",
  173. "eslint": "^5.11.1",
  174. "eslint-plugin-import": "~2.14.0",
  175. "eslint-plugin-jsx-a11y": "~6.1.2",
  176. "eslint-plugin-promise": "~4.0.1",
  177. "eslint-plugin-react": "~7.12.1",
  178. "jest": "^24.5.0",
  179. "raf": "^3.4.1",
  180. "react-intl-translations-manager": "^5.0.3",
  181. "react-test-renderer": "^16.7.0",
  182. "webpack-dev-server": "^3.2.1",
  183. "yargs": "^12.0.5"
  184. }
  185. }