2016-08-24 17:56:44 +02:00
|
|
|
{
|
2021-07-13 15:46:20 +02:00
|
|
|
"name": "@mastodon/mastodon",
|
2018-02-27 01:52:27 +01:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-12-25 15:02:08 +01:00
|
|
|
"engines": {
|
2021-05-07 19:52:40 +02:00
|
|
|
"node": ">=12"
|
2017-12-25 15:02:08 +01:00
|
|
|
},
|
2016-10-10 04:01:10 +02:00
|
|
|
"scripts": {
|
2017-04-26 01:51:51 +02:00
|
|
|
"postversion": "git push --tags",
|
2018-09-14 17:59:48 +02: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-03 02:04:16 +02:00
|
|
|
"manage:translations": "node ./config/webpack/translationRunner.js",
|
2017-06-26 04:49:39 +02:00
|
|
|
"start": "node ./streaming/index.js",
|
2019-06-06 18:51:46 +02: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 07:27:55 +01:00
|
|
|
"test:lint:js": "eslint --ext=js . --cache",
|
2019-06-06 18:51:46 +02:00
|
|
|
"test:lint:sass": "sass-lint -v",
|
2022-03-21 04:46:11 +01:00
|
|
|
"test:jest": "cross-env NODE_ENV=test jest",
|
|
|
|
"format": "prettier --write '**/*.{json,yml}",
|
|
|
|
"format-check": "prettier --write '**/*.{json,yml}"
|
2016-10-10 04:01:10 +02:00
|
|
|
},
|
2017-04-26 01:51:51 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-07-13 15:46:20 +02:00
|
|
|
"url": "https://github.com/mastodon/mastodon.git"
|
2017-04-26 01:51:51 +02:00
|
|
|
},
|
2018-09-14 17:59:48 +02:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
2021-03-12 05:32:49 +01:00
|
|
|
"not IE 11",
|
2019-01-07 08:17:35 +01:00
|
|
|
"iOS >= 9",
|
|
|
|
"not dead"
|
2018-09-14 17:59:48 +02:00
|
|
|
],
|
2017-05-30 16:11:45 +02:00
|
|
|
"private": true,
|
2017-01-11 15:39:31 +01:00
|
|
|
"dependencies": {
|
2022-05-03 03:19:24 +02:00
|
|
|
"@babel/core": "^7.17.10",
|
2022-04-14 14:20:01 +02:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.17.9",
|
2022-01-06 02:35:23 +01:00
|
|
|
"@babel/plugin-transform-react-inline-elements": "^7.16.7",
|
2022-05-03 03:19:40 +02:00
|
|
|
"@babel/plugin-transform-runtime": "^7.17.10",
|
2022-05-03 03:30:14 +02:00
|
|
|
"@babel/preset-env": "^7.17.10",
|
2022-01-06 02:25:38 +01:00
|
|
|
"@babel/preset-react": "^7.16.7",
|
2022-04-14 14:20:27 +02:00
|
|
|
"@babel/runtime": "^7.17.9",
|
2020-02-18 17:22:44 +01:00
|
|
|
"@gamestdio/websocket": "^0.3.2",
|
2020-10-22 06:14:50 +02:00
|
|
|
"@github/webauthn-json": "^0.5.7",
|
2022-03-15 05:48:15 +01:00
|
|
|
"@rails/ujs": "^6.1.5",
|
2022-05-10 21:08:27 +02:00
|
|
|
"array-includes": "^3.1.5",
|
2020-07-06 16:24:00 +02:00
|
|
|
"arrow-key-navigation": "^1.2.0",
|
2021-10-13 12:21:49 +02:00
|
|
|
"autoprefixer": "^9.8.8",
|
2022-05-04 15:25:40 +02:00
|
|
|
"axios": "^0.27.2",
|
2022-05-03 03:20:22 +02:00
|
|
|
"babel-loader": "^8.2.5",
|
2018-07-14 03:56:41 +02:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2022-02-12 12:21:56 +01:00
|
|
|
"babel-plugin-preval": "^5.1.0",
|
2020-05-08 21:32:37 +02:00
|
|
|
"babel-plugin-react-intl": "^6.2.0",
|
2019-03-15 15:05:31 +01:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
2018-12-31 18:11:48 +01:00
|
|
|
"babel-runtime": "^6.26.0",
|
2022-03-09 13:36:02 +01:00
|
|
|
"blurhash": "^1.1.5",
|
2021-04-05 15:17:46 +02:00
|
|
|
"classnames": "^2.3.1",
|
2020-12-29 16:01:25 +01:00
|
|
|
"color-blend": "^3.0.1",
|
2020-11-19 02:32:00 +01:00
|
|
|
"compression-webpack-plugin": "^6.1.1",
|
2020-12-29 15:41:30 +01:00
|
|
|
"cross-env": "^7.0.3",
|
2021-07-20 15:24:41 +02:00
|
|
|
"css-loader": "^5.2.7",
|
2021-04-12 14:59:28 +02:00
|
|
|
"cssnano": "^4.1.11",
|
2021-02-12 12:39:28 +01:00
|
|
|
"detect-passive-events": "^2.0.3",
|
2022-02-14 21:49:40 +01:00
|
|
|
"dotenv": "^16.0.0",
|
2021-11-18 22:01:31 +01:00
|
|
|
"emoji-mart": "npm:emoji-mart-lazyload",
|
2019-12-11 12:37:08 +01:00
|
|
|
"es6-symbol": "^3.1.3",
|
2017-02-26 01:34:56 +01:00
|
|
|
"escape-html": "^1.0.3",
|
2018-05-09 08:41:07 +02:00
|
|
|
"exif-js": "^2.3.0",
|
2022-05-03 03:40:18 +02:00
|
|
|
"express": "^4.18.1",
|
2020-11-04 15:43:15 +01:00
|
|
|
"file-loader": "^6.2.0",
|
2018-09-28 02:11:14 +02:00
|
|
|
"font-awesome": "^4.7.0",
|
2022-05-04 15:38:02 +02:00
|
|
|
"glob": "^8.0.1",
|
2019-09-18 15:41:50 +02:00
|
|
|
"history": "^4.10.1",
|
2022-02-05 05:02:42 +01:00
|
|
|
"http-link-header": "^1.0.4",
|
2021-10-14 20:58:38 +02:00
|
|
|
"immutable": "^4.0.0",
|
2020-10-13 08:23:27 +02:00
|
|
|
"imports-loader": "^1.2.0",
|
2020-12-29 15:51:48 +01:00
|
|
|
"intersection-observer": "^0.12.0",
|
2016-11-23 18:53:23 +01:00
|
|
|
"intl": "^1.2.5",
|
2017-12-03 16:55:53 +01:00
|
|
|
"intl-messageformat": "^2.2.0",
|
2019-07-22 09:27:44 +02:00
|
|
|
"intl-relativeformat": "^6.4.3",
|
2020-12-30 03:47:18 +01:00
|
|
|
"is-nan": "^1.3.2",
|
2021-04-19 21:07:08 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-02-23 22:56:29 +01:00
|
|
|
"lodash": "^4.17.21",
|
2017-05-25 14:09:55 +02:00
|
|
|
"mark-loader": "^0.1.6",
|
2022-03-09 13:33:49 +01:00
|
|
|
"marky": "^1.2.4",
|
2021-06-30 16:37:01 +02:00
|
|
|
"mini-css-extract-plugin": "^1.6.2",
|
2020-04-13 16:11:52 +02:00
|
|
|
"mkdirp": "^1.0.4",
|
2022-04-27 02:17:03 +02:00
|
|
|
"npmlog": "^6.0.2",
|
2017-05-11 11:26:06 +02:00
|
|
|
"object-assign": "^4.1.1",
|
2017-07-14 01:59:34 +02:00
|
|
|
"object-fit-images": "^3.2.3",
|
2021-10-13 12:15:35 +02:00
|
|
|
"object.values": "^1.1.5",
|
2019-06-03 14:12:34 +02:00
|
|
|
"offline-plugin": "^5.0.7",
|
2018-07-14 03:56:41 +02:00
|
|
|
"path-complete-extname": "^1.0.0",
|
2021-02-25 00:03:02 +01:00
|
|
|
"pg": "^8.5.0",
|
2018-09-14 17:59:48 +02:00
|
|
|
"postcss-loader": "^3.0.0",
|
2017-07-14 01:59:34 +02:00
|
|
|
"postcss-object-fit-images": "^1.1.2",
|
2021-10-09 12:37:44 +02:00
|
|
|
"promise.prototype.finally": "^3.1.3",
|
2022-01-19 03:04:24 +01:00
|
|
|
"prop-types": "^15.8.1",
|
2017-05-04 15:52:08 +02:00
|
|
|
"punycode": "^2.1.0",
|
2020-10-22 08:35:48 +02:00
|
|
|
"react": "^16.14.0",
|
|
|
|
"react-dom": "^16.14.0",
|
2018-12-31 18:11:48 +01:00
|
|
|
"react-hotkeys": "^1.1.4",
|
2020-03-18 11:40:49 +01:00
|
|
|
"react-immutable-proptypes": "^2.2.0",
|
2020-06-08 08:10:37 +02:00
|
|
|
"react-immutable-pure-component": "^2.2.2",
|
2019-06-03 17:14:17 +02:00
|
|
|
"react-intl": "^2.9.0",
|
2019-01-16 19:47:46 +01:00
|
|
|
"react-masonry-infinite": "^1.2.2",
|
2017-10-31 12:23:24 +01:00
|
|
|
"react-motion": "^0.5.2",
|
2019-11-11 14:24:27 +01:00
|
|
|
"react-notification": "^6.8.5",
|
2020-12-29 16:04:48 +01:00
|
|
|
"react-overlays": "^0.9.3",
|
2022-04-05 20:02:35 +02:00
|
|
|
"react-redux": "^7.2.8",
|
2019-08-20 02:19:01 +02:00
|
|
|
"react-redux-loading-bar": "^4.0.8",
|
2017-06-20 20:40:03 +02:00
|
|
|
"react-router-dom": "^4.1.1",
|
2017-10-31 22:58:38 +01:00
|
|
|
"react-router-scroll-4": "^1.0.0-beta.1",
|
2022-05-10 21:00:31 +02:00
|
|
|
"react-select": "^5.3.2",
|
2018-05-27 21:45:30 +02:00
|
|
|
"react-sparklines": "^1.7.0",
|
2021-06-01 06:08:18 +02:00
|
|
|
"react-swipeable-views": "^0.14.0",
|
2021-06-07 14:03:42 +02:00
|
|
|
"react-textarea-autosize": "^8.3.3",
|
2021-03-15 12:56:59 +01:00
|
|
|
"react-toggle": "^4.1.2",
|
2022-05-04 06:42:37 +02:00
|
|
|
"redis": "^4.1.0",
|
2022-05-04 15:29:51 +02:00
|
|
|
"redux": "^4.2.0",
|
2017-05-29 18:23:28 +02:00
|
|
|
"redux-immutable": "^4.0.0",
|
2021-12-04 15:41:12 +01:00
|
|
|
"redux-thunk": "^2.4.1",
|
2021-08-01 04:09:50 +02:00
|
|
|
"regenerator-runtime": "^0.13.9",
|
2020-02-24 09:50:18 +01:00
|
|
|
"rellax": "^1.12.1",
|
2017-05-24 17:55:00 +02:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2021-12-04 15:41:40 +01:00
|
|
|
"reselect": "^4.1.5",
|
2020-02-17 17:58:14 +01:00
|
|
|
"rimraf": "^3.0.2",
|
2022-05-03 03:41:21 +02:00
|
|
|
"sass": "^1.51.0",
|
2021-05-21 17:47:41 +02:00
|
|
|
"sass-loader": "^10.2.0",
|
2020-02-19 22:36:52 +01:00
|
|
|
"stacktrace-js": "^2.0.2",
|
2020-03-31 15:11:00 +02:00
|
|
|
"stringz": "^2.1.0",
|
2017-10-03 13:11:22 +02:00
|
|
|
"substring-trie": "^1.0.2",
|
2020-10-13 08:49:45 +02:00
|
|
|
"terser-webpack-plugin": "^4.2.3",
|
2020-09-01 00:26:10 +02:00
|
|
|
"tesseract.js": "^2.1.1",
|
2017-05-28 16:25:26 +02:00
|
|
|
"throng": "^4.0.0",
|
2017-05-31 15:11:33 +02:00
|
|
|
"tiny-queue": "^0.2.1",
|
2021-03-02 12:02:56 +01:00
|
|
|
"twitter-text": "3.1.0",
|
2020-10-06 10:13:26 +02:00
|
|
|
"uuid": "^8.3.1",
|
2021-01-21 13:46:54 +01:00
|
|
|
"webpack": "^4.46.0",
|
2021-04-26 13:47:41 +02:00
|
|
|
"webpack-assets-manifest": "^4.0.6",
|
2021-10-20 03:08:35 +02:00
|
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
2020-11-24 21:06:18 +01:00
|
|
|
"webpack-cli": "^3.3.12",
|
2021-06-14 17:00:31 +02:00
|
|
|
"webpack-merge": "^5.8.0",
|
2021-03-24 09:37:41 +01:00
|
|
|
"wicg-inert": "^3.1.1",
|
2022-05-04 06:55:05 +02:00
|
|
|
"ws": "^8.6.0"
|
2017-04-11 00:36:03 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-14 14:22:07 +02:00
|
|
|
"@testing-library/jest-dom": "^5.16.4",
|
2022-04-21 19:33:45 +02:00
|
|
|
"@testing-library/react": "^12.1.5",
|
2020-06-06 01:29:20 +02:00
|
|
|
"babel-eslint": "^10.1.0",
|
2022-05-10 21:02:08 +02:00
|
|
|
"babel-jest": "^28.1.0",
|
2021-08-02 16:28:16 +02:00
|
|
|
"eslint": "^7.32.0",
|
2022-04-14 14:25:13 +02:00
|
|
|
"eslint-plugin-import": "~2.26.0",
|
2021-11-18 01:42:12 +01:00
|
|
|
"eslint-plugin-jsx-a11y": "~6.5.1",
|
2021-12-21 02:55:38 +01:00
|
|
|
"eslint-plugin-promise": "~6.0.0",
|
2022-03-22 03:30:56 +01:00
|
|
|
"eslint-plugin-react": "~7.29.4",
|
2022-05-10 21:15:04 +02:00
|
|
|
"jest": "^28.1.0",
|
2022-05-10 21:01:51 +02:00
|
|
|
"jest-environment-jsdom": "^28.1.0",
|
2022-04-05 20:03:26 +02:00
|
|
|
"prettier": "^2.6.2",
|
2018-12-31 18:11:48 +01:00
|
|
|
"raf": "^3.4.1",
|
2018-07-14 03:56:41 +02:00
|
|
|
"react-intl-translations-manager": "^5.0.3",
|
2020-10-26 18:52:38 +01:00
|
|
|
"react-test-renderer": "^16.14.0",
|
2019-06-04 17:23:18 +02:00
|
|
|
"sass-lint": "^1.13.1",
|
2021-11-13 10:46:14 +01:00
|
|
|
"webpack-dev-server": "^3.11.3",
|
2022-04-14 12:29:52 +02:00
|
|
|
"yargs": "^17.4.1"
|
2020-04-04 23:24:59 +02:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"kind-of": "^6.0.3"
|
2021-03-24 09:37:41 +01:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2022-01-06 02:14:35 +01:00
|
|
|
"bufferutil": "^4.0.6",
|
2022-03-15 05:47:07 +01:00
|
|
|
"utf-8-validate": "^5.0.9"
|
2016-08-24 17:56:44 +02:00
|
|
|
}
|
|
|
|
}
|