2016-08-24 11:56:44 -04:00
|
|
|
{
|
2021-07-13 09:46:20 -04:00
|
|
|
"name": "@mastodon/mastodon",
|
2018-02-26 19:52:27 -05:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-12-25 09:02:08 -05:00
|
|
|
"engines": {
|
2022-06-16 16:09:58 -04:00
|
|
|
"node": ">=14"
|
2017-12-25 09:02:08 -05:00
|
|
|
},
|
2016-10-09 22:01:10 -04:00
|
|
|
"scripts": {
|
2017-04-25 19:51:51 -04:00
|
|
|
"postversion": "git push --tags",
|
2018-09-14 11:59:48 -04:00
|
|
|
"build:development": "cross-env RAILS_ENV=development NODE_ENV=development ./bin/webpack",
|
|
|
|
"build:production": "cross-env RAILS_ENV=production NODE_ENV=production ./bin/webpack",
|
2017-05-02 20:04:16 -04:00
|
|
|
"manage:translations": "node ./config/webpack/translationRunner.js",
|
2017-06-25 22:49:39 -04:00
|
|
|
"start": "node ./streaming/index.js",
|
2019-06-06 12:51:46 -04:00
|
|
|
"test": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:jest",
|
|
|
|
"test:lint": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:lint:sass",
|
2019-12-23 01:27:55 -05:00
|
|
|
"test:lint:js": "eslint --ext=js . --cache",
|
2022-06-01 13:22:35 -04:00
|
|
|
"test:lint:sass": "stylelint '**/*.scss'",
|
2022-03-20 23:46:11 -04:00
|
|
|
"test:jest": "cross-env NODE_ENV=test jest",
|
2022-06-01 13:22:35 -04:00
|
|
|
"format": "prettier --write '**/*.{json,yml}'",
|
|
|
|
"format-check": "prettier --write '**/*.{json,yml}'"
|
2016-10-09 22:01:10 -04:00
|
|
|
},
|
2017-04-25 19:51:51 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-07-13 09:46:20 -04:00
|
|
|
"url": "https://github.com/mastodon/mastodon.git"
|
2017-04-25 19:51:51 -04:00
|
|
|
},
|
2017-05-30 10:11:45 -04:00
|
|
|
"private": true,
|
2017-01-11 09:39:31 -05:00
|
|
|
"dependencies": {
|
2022-10-26 07:11:55 -04:00
|
|
|
"@babel/core": "^7.19.6",
|
2022-10-26 08:07:47 -04:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.19.6",
|
2022-06-28 06:08:05 -04:00
|
|
|
"@babel/plugin-transform-react-inline-elements": "^7.18.6",
|
2022-10-26 07:12:38 -04:00
|
|
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
2022-10-11 06:46:03 -04:00
|
|
|
"@babel/preset-env": "^7.19.4",
|
2022-06-28 06:19:39 -04:00
|
|
|
"@babel/preset-react": "^7.18.6",
|
2022-10-11 06:45:39 -04:00
|
|
|
"@babel/runtime": "^7.19.4",
|
2020-02-18 11:22:44 -05:00
|
|
|
"@gamestdio/websocket": "^0.3.2",
|
2020-10-22 00:14:50 -04:00
|
|
|
"@github/webauthn-json": "^0.5.7",
|
2022-09-16 21:03:46 -04:00
|
|
|
"@rails/ujs": "^6.1.7",
|
2022-10-13 21:16:37 -04:00
|
|
|
"abortcontroller-polyfill": "^1.7.5",
|
2022-05-10 15:08:27 -04:00
|
|
|
"array-includes": "^3.1.5",
|
2020-07-06 10:24:00 -04:00
|
|
|
"arrow-key-navigation": "^1.2.0",
|
2021-10-13 06:21:49 -04:00
|
|
|
"autoprefixer": "^9.8.8",
|
2022-10-20 20:16:33 -04:00
|
|
|
"axios": "^1.1.3",
|
2022-05-02 21:20:22 -04:00
|
|
|
"babel-loader": "^8.2.5",
|
2018-07-13 21:56:41 -04:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2022-02-12 06:21:56 -05:00
|
|
|
"babel-plugin-preval": "^5.1.0",
|
2020-05-08 15:32:37 -04:00
|
|
|
"babel-plugin-react-intl": "^6.2.0",
|
2019-03-15 10:05:31 -04:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
2022-10-04 07:56:13 -04:00
|
|
|
"blurhash": "^2.0.3",
|
2022-09-21 07:24:22 -04:00
|
|
|
"classnames": "^2.3.2",
|
2022-08-18 20:24:46 -04:00
|
|
|
"cocoon-js-vanilla": "^1.3.0",
|
2020-12-29 10:01:25 -05:00
|
|
|
"color-blend": "^3.0.1",
|
2020-11-18 20:32:00 -05:00
|
|
|
"compression-webpack-plugin": "^6.1.1",
|
2020-12-29 09:41:30 -05:00
|
|
|
"cross-env": "^7.0.3",
|
2021-07-20 09:24:41 -04:00
|
|
|
"css-loader": "^5.2.7",
|
2021-04-12 08:59:28 -04:00
|
|
|
"cssnano": "^4.1.11",
|
2021-02-12 06:39:28 -05:00
|
|
|
"detect-passive-events": "^2.0.3",
|
2022-10-04 07:42:26 -04:00
|
|
|
"dotenv": "^16.0.3",
|
2021-11-18 16:01:31 -05:00
|
|
|
"emoji-mart": "npm:emoji-mart-lazyload",
|
2019-12-11 06:37:08 -05:00
|
|
|
"es6-symbol": "^3.1.3",
|
2017-02-25 19:34:56 -05:00
|
|
|
"escape-html": "^1.0.3",
|
2018-05-09 02:41:07 -04:00
|
|
|
"exif-js": "^2.3.0",
|
2022-10-11 06:46:58 -04:00
|
|
|
"express": "^4.18.2",
|
2020-11-04 09:43:15 -05:00
|
|
|
"file-loader": "^6.2.0",
|
2018-09-27 20:11:14 -04:00
|
|
|
"font-awesome": "^4.7.0",
|
2022-05-16 05:18:35 -04:00
|
|
|
"fuzzysort": "^1.9.0",
|
2022-05-18 14:29:53 -04:00
|
|
|
"glob": "^8.0.3",
|
2019-09-18 09:41:50 -04:00
|
|
|
"history": "^4.10.1",
|
2022-07-05 20:42:11 -04:00
|
|
|
"http-link-header": "^1.0.5",
|
2022-05-25 19:41:07 -04:00
|
|
|
"immutable": "^4.1.0",
|
2020-10-13 02:23:27 -04:00
|
|
|
"imports-loader": "^1.2.0",
|
2022-06-19 01:44:57 -04:00
|
|
|
"intersection-observer": "^0.12.2",
|
2016-11-23 12:53:23 -05:00
|
|
|
"intl": "^1.2.5",
|
2017-12-03 10:55:53 -05:00
|
|
|
"intl-messageformat": "^2.2.0",
|
2019-07-22 03:27:44 -04:00
|
|
|
"intl-relativeformat": "^6.4.3",
|
2020-12-29 21:47:18 -05:00
|
|
|
"is-nan": "^1.3.2",
|
2021-04-19 15:07:08 -04:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-10-04 07:34:21 -04:00
|
|
|
"jsdom": "^20.0.1",
|
2021-02-23 16:56:29 -05:00
|
|
|
"lodash": "^4.17.21",
|
2017-05-25 08:09:55 -04:00
|
|
|
"mark-loader": "^0.1.6",
|
2022-07-05 20:47:18 -04:00
|
|
|
"marky": "^1.2.5",
|
2021-06-30 10:37:01 -04:00
|
|
|
"mini-css-extract-plugin": "^1.6.2",
|
2020-04-13 10:11:52 -04:00
|
|
|
"mkdirp": "^1.0.4",
|
2022-10-26 07:14:33 -04:00
|
|
|
"npmlog": "^7.0.1",
|
2017-05-11 05:26:06 -04:00
|
|
|
"object-assign": "^4.1.1",
|
2017-07-13 19:59:34 -04:00
|
|
|
"object-fit-images": "^3.2.3",
|
2021-10-13 06:15:35 -04:00
|
|
|
"object.values": "^1.1.5",
|
2018-07-13 21:56:41 -04:00
|
|
|
"path-complete-extname": "^1.0.0",
|
2021-02-24 18:03:02 -05:00
|
|
|
"pg": "^8.5.0",
|
2022-10-20 20:17:03 -04:00
|
|
|
"postcss": "^8.4.18",
|
2018-09-14 11:59:48 -04:00
|
|
|
"postcss-loader": "^3.0.0",
|
2017-07-13 19:59:34 -04:00
|
|
|
"postcss-object-fit-images": "^1.1.2",
|
2021-10-09 06:37:44 -04:00
|
|
|
"promise.prototype.finally": "^3.1.3",
|
2022-01-18 21:04:24 -05:00
|
|
|
"prop-types": "^15.8.1",
|
2017-05-04 09:52:08 -04:00
|
|
|
"punycode": "^2.1.0",
|
2020-10-22 02:35:48 -04:00
|
|
|
"react": "^16.14.0",
|
|
|
|
"react-dom": "^16.14.0",
|
2022-09-28 22:39:33 -04:00
|
|
|
"react-helmet": "^6.1.0",
|
2018-12-31 12:11:48 -05:00
|
|
|
"react-hotkeys": "^1.1.4",
|
2020-03-18 06:40:49 -04:00
|
|
|
"react-immutable-proptypes": "^2.2.0",
|
2020-06-08 02:10:37 -04:00
|
|
|
"react-immutable-pure-component": "^2.2.2",
|
2019-06-03 11:14:17 -04:00
|
|
|
"react-intl": "^2.9.0",
|
2017-10-31 07:23:24 -04:00
|
|
|
"react-motion": "^0.5.2",
|
2019-11-11 08:24:27 -05:00
|
|
|
"react-notification": "^6.8.5",
|
2020-12-29 10:04:48 -05:00
|
|
|
"react-overlays": "^0.9.3",
|
2022-09-27 13:34:29 -04:00
|
|
|
"react-redux": "^7.2.9",
|
2022-07-20 07:56:44 -04:00
|
|
|
"react-redux-loading-bar": "^5.0.4",
|
2017-06-20 14:40:03 -04:00
|
|
|
"react-router-dom": "^4.1.1",
|
2017-10-31 17:58:38 -04:00
|
|
|
"react-router-scroll-4": "^1.0.0-beta.1",
|
2022-10-26 07:13:37 -04:00
|
|
|
"react-select": "^5.5.4",
|
2018-05-27 15:45:30 -04:00
|
|
|
"react-sparklines": "^1.7.0",
|
2021-06-01 00:08:18 -04:00
|
|
|
"react-swipeable-views": "^0.14.0",
|
2022-05-29 09:27:10 -04:00
|
|
|
"react-textarea-autosize": "^8.3.4",
|
2022-07-20 07:30:41 -04:00
|
|
|
"react-toggle": "^4.1.3",
|
2022-05-17 04:12:00 -04:00
|
|
|
"redis": "^4.0.6 <4.1.0",
|
2022-05-04 09:29:51 -04:00
|
|
|
"redux": "^4.2.0",
|
2017-05-29 12:23:28 -04:00
|
|
|
"redux-immutable": "^4.0.0",
|
2021-12-04 09:41:12 -05:00
|
|
|
"redux-thunk": "^2.4.1",
|
2022-10-21 07:09:17 -04:00
|
|
|
"regenerator-runtime": "^0.13.10",
|
2017-05-24 11:55:00 -04:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2022-06-16 07:46:48 -04:00
|
|
|
"reselect": "^4.1.6",
|
2020-02-17 11:58:14 -05:00
|
|
|
"rimraf": "^3.0.2",
|
2022-09-27 13:31:46 -04:00
|
|
|
"sass": "^1.55.0",
|
2021-05-21 11:47:41 -04:00
|
|
|
"sass-loader": "^10.2.0",
|
2020-02-19 16:36:52 -05:00
|
|
|
"stacktrace-js": "^2.0.2",
|
2020-03-31 09:11:00 -04:00
|
|
|
"stringz": "^2.1.0",
|
2017-10-03 07:11:22 -04:00
|
|
|
"substring-trie": "^1.0.2",
|
2020-10-13 02:49:45 -04:00
|
|
|
"terser-webpack-plugin": "^4.2.3",
|
2020-08-31 18:26:10 -04:00
|
|
|
"tesseract.js": "^2.1.1",
|
2017-05-28 10:25:26 -04:00
|
|
|
"throng": "^4.0.0",
|
2017-05-31 09:11:33 -04:00
|
|
|
"tiny-queue": "^0.2.1",
|
2021-03-02 06:02:56 -05:00
|
|
|
"twitter-text": "3.1.0",
|
2020-10-06 04:13:26 -04:00
|
|
|
"uuid": "^8.3.1",
|
2021-01-21 07:46:54 -05:00
|
|
|
"webpack": "^4.46.0",
|
2021-04-26 07:47:41 -04:00
|
|
|
"webpack-assets-manifest": "^4.0.6",
|
2022-08-24 20:56:16 -04:00
|
|
|
"webpack-bundle-analyzer": "^4.6.1",
|
2020-11-24 15:06:18 -05:00
|
|
|
"webpack-cli": "^3.3.12",
|
2021-06-14 11:00:31 -04:00
|
|
|
"webpack-merge": "^5.8.0",
|
2022-06-16 07:33:21 -04:00
|
|
|
"wicg-inert": "^3.1.2",
|
2022-08-31 12:32:58 -04:00
|
|
|
"workbox-expiration": "^6.5.4",
|
2022-08-31 22:41:31 -04:00
|
|
|
"workbox-precaching": "^6.5.4",
|
2022-08-31 12:32:17 -04:00
|
|
|
"workbox-routing": "^6.5.4",
|
2022-08-31 17:28:31 -04:00
|
|
|
"workbox-strategies": "^6.5.4",
|
2022-08-31 12:12:53 -04:00
|
|
|
"workbox-webpack-plugin": "^6.5.4",
|
2022-08-31 17:29:39 -04:00
|
|
|
"workbox-window": "^6.5.4",
|
2022-10-26 07:15:38 -04:00
|
|
|
"ws": "^8.10.0"
|
2017-04-10 18:36:03 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-20 21:51:20 -04:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
2022-08-14 18:42:03 -04:00
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
2022-04-21 13:33:45 -04:00
|
|
|
"@testing-library/react": "^12.1.5",
|
2022-10-26 07:16:26 -04:00
|
|
|
"babel-jest": "^29.2.1",
|
2021-08-02 10:28:16 -04:00
|
|
|
"eslint": "^7.32.0",
|
2022-04-14 08:25:13 -04:00
|
|
|
"eslint-plugin-import": "~2.26.0",
|
2022-07-29 11:57:08 -04:00
|
|
|
"eslint-plugin-jsx-a11y": "~6.6.1",
|
2022-10-26 07:13:05 -04:00
|
|
|
"eslint-plugin-promise": "~6.1.1",
|
2022-10-19 22:54:45 -04:00
|
|
|
"eslint-plugin-react": "~7.31.10",
|
2022-10-26 07:52:01 -04:00
|
|
|
"jest": "^29.2.2",
|
2022-10-26 07:16:50 -04:00
|
|
|
"jest-environment-jsdom": "^29.2.1",
|
2022-09-20 22:21:51 -04:00
|
|
|
"postcss-scss": "^4.0.5",
|
2022-06-19 01:43:55 -04:00
|
|
|
"prettier": "^2.7.1",
|
2018-12-31 12:11:48 -05:00
|
|
|
"raf": "^3.4.1",
|
2018-07-13 21:56:41 -04:00
|
|
|
"react-intl-translations-manager": "^5.0.3",
|
2020-10-26 13:52:38 -04:00
|
|
|
"react-test-renderer": "^16.14.0",
|
2022-10-19 20:47:48 -04:00
|
|
|
"stylelint": "^14.14.0",
|
2022-09-11 09:00:06 -04:00
|
|
|
"stylelint-config-standard-scss": "^5.0.0",
|
2021-11-13 04:46:14 -05:00
|
|
|
"webpack-dev-server": "^3.11.3",
|
2022-10-04 07:35:39 -04:00
|
|
|
"yargs": "^17.6.0"
|
2020-04-04 17:24:59 -04:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"kind-of": "^6.0.3"
|
2021-03-24 04:37:41 -04:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2022-10-26 07:11:05 -04:00
|
|
|
"bufferutil": "^4.0.7",
|
2022-10-26 08:08:16 -04:00
|
|
|
"utf-8-validate": "^5.0.10"
|
2016-08-24 11:56:44 -04:00
|
|
|
}
|
|
|
|
}
|