package.json 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. {
  2. "name": "@mastodon/mastodon",
  3. "license": "AGPL-3.0-or-later",
  4. "engines": {
  5. "node": ">=12"
  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:js && ${npm_execpath} run test:jest",
  14. "test:lint": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:lint:sass",
  15. "test:lint:js": "eslint --ext=js . --cache",
  16. "test:lint:sass": "sass-lint -v",
  17. "test:jest": "cross-env NODE_ENV=test jest --coverage"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/mastodon/mastodon.git"
  22. },
  23. "browserslist": [
  24. "last 2 versions",
  25. "not IE 11",
  26. "iOS >= 9",
  27. "not dead"
  28. ],
  29. "jest": {
  30. "projects": [
  31. "<rootDir>/app/javascript/mastodon"
  32. ],
  33. "testPathIgnorePatterns": [
  34. "<rootDir>/node_modules/",
  35. "<rootDir>/vendor/",
  36. "<rootDir>/config/",
  37. "<rootDir>/log/",
  38. "<rootDir>/public/",
  39. "<rootDir>/tmp/"
  40. ],
  41. "setupFiles": [
  42. "raf/polyfill"
  43. ],
  44. "setupFilesAfterEnv": [
  45. "<rootDir>/app/javascript/mastodon/test_setup.js"
  46. ],
  47. "collectCoverageFrom": [
  48. "app/javascript/mastodon/**/*.js",
  49. "!app/javascript/mastodon/features/emoji/emoji_compressed.js",
  50. "!app/javascript/mastodon/locales/locale-data/*.js",
  51. "!app/javascript/mastodon/service_worker/entry.js",
  52. "!app/javascript/mastodon/test_setup.js"
  53. ],
  54. "coverageDirectory": "<rootDir>/coverage",
  55. "moduleDirectories": [
  56. "<rootDir>/node_modules",
  57. "<rootDir>/app/javascript"
  58. ]
  59. },
  60. "private": true,
  61. "dependencies": {
  62. "@babel/core": "^7.14.3",
  63. "@babel/plugin-proposal-decorators": "^7.14.2",
  64. "@babel/plugin-transform-react-inline-elements": "^7.12.13",
  65. "@babel/plugin-transform-runtime": "^7.14.3",
  66. "@babel/preset-env": "^7.14.4",
  67. "@babel/preset-react": "^7.13.13",
  68. "@babel/runtime": "^7.14.0",
  69. "@gamestdio/websocket": "^0.3.2",
  70. "@github/webauthn-json": "^0.5.7",
  71. "@rails/ujs": "^6.1.3",
  72. "array-includes": "^3.1.3",
  73. "arrow-key-navigation": "^1.2.0",
  74. "autoprefixer": "^9.8.6",
  75. "axios": "^0.21.1",
  76. "babel-loader": "^8.2.2",
  77. "babel-plugin-lodash": "^3.3.4",
  78. "babel-plugin-preval": "^5.0.0",
  79. "babel-plugin-react-intl": "^6.2.0",
  80. "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
  81. "babel-runtime": "^6.26.0",
  82. "blurhash": "^1.1.3",
  83. "classnames": "^2.3.1",
  84. "color-blend": "^3.0.1",
  85. "compression-webpack-plugin": "^6.1.1",
  86. "cross-env": "^7.0.3",
  87. "css-loader": "^5.2.6",
  88. "cssnano": "^4.1.11",
  89. "detect-passive-events": "^2.0.3",
  90. "dotenv": "^9.0.2",
  91. "emoji-mart": "^3.0.1",
  92. "es6-symbol": "^3.1.3",
  93. "escape-html": "^1.0.3",
  94. "exif-js": "^2.3.0",
  95. "express": "^4.17.1",
  96. "file-loader": "^6.2.0",
  97. "font-awesome": "^4.7.0",
  98. "glob": "^7.1.7",
  99. "history": "^4.10.1",
  100. "http-link-header": "^1.0.3",
  101. "immutable": "^3.8.2",
  102. "imports-loader": "^1.2.0",
  103. "intersection-observer": "^0.12.0",
  104. "intl": "^1.2.5",
  105. "intl-messageformat": "^2.2.0",
  106. "intl-relativeformat": "^6.4.3",
  107. "is-nan": "^1.3.2",
  108. "js-yaml": "^4.1.0",
  109. "lodash": "^4.17.21",
  110. "mark-loader": "^0.1.6",
  111. "marky": "^1.2.2",
  112. "mini-css-extract-plugin": "^1.6.0",
  113. "mkdirp": "^1.0.4",
  114. "npmlog": "^4.1.2",
  115. "object-assign": "^4.1.1",
  116. "object-fit-images": "^3.2.3",
  117. "object.values": "^1.1.3",
  118. "offline-plugin": "^5.0.7",
  119. "path-complete-extname": "^1.0.0",
  120. "pg": "^8.5.0",
  121. "postcss-loader": "^3.0.0",
  122. "postcss-object-fit-images": "^1.1.2",
  123. "promise.prototype.finally": "^3.1.2",
  124. "prop-types": "^15.5.10",
  125. "punycode": "^2.1.0",
  126. "react": "^16.14.0",
  127. "react-dom": "^16.14.0",
  128. "react-hotkeys": "^1.1.4",
  129. "react-immutable-proptypes": "^2.2.0",
  130. "react-immutable-pure-component": "^2.2.2",
  131. "react-intl": "^2.9.0",
  132. "react-masonry-infinite": "^1.2.2",
  133. "react-motion": "^0.5.2",
  134. "react-notification": "^6.8.5",
  135. "react-overlays": "^0.9.3",
  136. "react-redux": "^7.2.4",
  137. "react-redux-loading-bar": "^4.0.8",
  138. "react-router-dom": "^4.1.1",
  139. "react-router-scroll-4": "^1.0.0-beta.1",
  140. "react-select": "^4.3.1",
  141. "react-sparklines": "^1.7.0",
  142. "react-swipeable-views": "^0.14.0",
  143. "react-textarea-autosize": "^8.3.2",
  144. "react-toggle": "^4.1.2",
  145. "redis": "^3.1.2",
  146. "redux": "^4.1.0",
  147. "redux-immutable": "^4.0.0",
  148. "redux-thunk": "^2.2.0",
  149. "regenerator-runtime": "^0.13.7",
  150. "rellax": "^1.12.1",
  151. "requestidlecallback": "^0.3.0",
  152. "reselect": "^4.0.0",
  153. "rimraf": "^3.0.2",
  154. "sass": "^1.34.0",
  155. "sass-loader": "^10.2.0",
  156. "stacktrace-js": "^2.0.2",
  157. "stringz": "^2.1.0",
  158. "substring-trie": "^1.0.2",
  159. "terser-webpack-plugin": "^4.2.3",
  160. "tesseract.js": "^2.1.1",
  161. "throng": "^4.0.0",
  162. "tiny-queue": "^0.2.1",
  163. "twitter-text": "3.1.0",
  164. "uuid": "^8.3.1",
  165. "webpack": "^4.46.0",
  166. "webpack-assets-manifest": "^4.0.6",
  167. "webpack-bundle-analyzer": "^4.4.2",
  168. "webpack-cli": "^3.3.12",
  169. "webpack-merge": "^5.7.3",
  170. "wicg-inert": "^3.1.1",
  171. "ws": "^7.4.6"
  172. },
  173. "devDependencies": {
  174. "@testing-library/jest-dom": "^5.12.0",
  175. "@testing-library/react": "^11.2.7",
  176. "babel-eslint": "^10.1.0",
  177. "babel-jest": "^27.0.2",
  178. "eslint": "^7.27.0",
  179. "eslint-plugin-import": "~2.23.4",
  180. "eslint-plugin-jsx-a11y": "~6.4.1",
  181. "eslint-plugin-promise": "~5.1.0",
  182. "eslint-plugin-react": "~7.24.0",
  183. "jest": "^26.6.3",
  184. "raf": "^3.4.1",
  185. "react-intl-translations-manager": "^5.0.3",
  186. "react-test-renderer": "^16.14.0",
  187. "sass-lint": "^1.13.1",
  188. "webpack-dev-server": "^3.11.2",
  189. "yargs": "^17.0.1"
  190. },
  191. "resolutions": {
  192. "kind-of": "^6.0.3"
  193. },
  194. "optionalDependencies": {
  195. "bufferutil": "^4.0.3",
  196. "utf-8-validate": "^5.0.5"
  197. }
  198. }