2016-08-24 16:56:44 +01:00
|
|
|
{
|
2019-09-19 18:58:14 +01:00
|
|
|
"name": "@tootsuite/mastodon",
|
2018-02-27 00:52:27 +00:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-12-25 14:02:08 +00:00
|
|
|
"engines": {
|
2020-01-11 10:53:36 +00:00
|
|
|
"node": ">=10.13 <13"
|
2017-12-25 14:02:08 +00:00
|
|
|
},
|
2016-10-10 03:01:10 +01:00
|
|
|
"scripts": {
|
2017-04-26 00:51:51 +01:00
|
|
|
"postversion": "git push --tags",
|
2018-09-14 16:59:48 +01: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 01:04:16 +01:00
|
|
|
"manage:translations": "node ./config/webpack/translationRunner.js",
|
2017-06-26 03:49:39 +01:00
|
|
|
"start": "node ./streaming/index.js",
|
2019-06-06 17:51:46 +01: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 06:27:55 +00:00
|
|
|
"test:lint:js": "eslint --ext=js . --cache",
|
2019-06-06 17:51:46 +01:00
|
|
|
"test:lint:sass": "sass-lint -v",
|
2018-03-06 20:36:46 +00:00
|
|
|
"test:jest": "cross-env NODE_ENV=test jest --coverage"
|
2016-10-10 03:01:10 +01:00
|
|
|
},
|
2017-04-26 00:51:51 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/tootsuite/mastodon.git"
|
|
|
|
},
|
2018-09-14 16:59:48 +01:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"IE >= 11",
|
2019-01-07 07:17:35 +00:00
|
|
|
"iOS >= 9",
|
|
|
|
"not dead"
|
2018-09-14 16:59:48 +01:00
|
|
|
],
|
2019-03-15 14:05:31 +00:00
|
|
|
"jest": {
|
|
|
|
"projects": [
|
|
|
|
"<rootDir>/app/javascript/mastodon"
|
|
|
|
],
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"<rootDir>/node_modules/",
|
|
|
|
"<rootDir>/vendor/",
|
|
|
|
"<rootDir>/config/",
|
|
|
|
"<rootDir>/log/",
|
|
|
|
"<rootDir>/public/",
|
|
|
|
"<rootDir>/tmp/"
|
|
|
|
],
|
|
|
|
"setupFiles": [
|
|
|
|
"raf/polyfill"
|
|
|
|
],
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<rootDir>/app/javascript/mastodon/test_setup.js"
|
|
|
|
],
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"app/javascript/mastodon/**/*.js",
|
|
|
|
"!app/javascript/mastodon/features/emoji/emoji_compressed.js",
|
|
|
|
"!app/javascript/mastodon/locales/locale-data/*.js",
|
|
|
|
"!app/javascript/mastodon/service_worker/entry.js",
|
|
|
|
"!app/javascript/mastodon/test_setup.js"
|
|
|
|
],
|
|
|
|
"coverageDirectory": "<rootDir>/coverage",
|
|
|
|
"moduleDirectories": [
|
|
|
|
"<rootDir>/node_modules",
|
|
|
|
"<rootDir>/app/javascript"
|
|
|
|
]
|
|
|
|
},
|
2017-05-30 15:11:45 +01:00
|
|
|
"private": true,
|
2017-01-11 14:39:31 +00:00
|
|
|
"dependencies": {
|
2020-05-08 20:29:53 +01:00
|
|
|
"@babel/core": "^7.9.6",
|
2020-01-20 12:05:36 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
2020-01-20 14:15:59 +00:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.8.3",
|
2020-03-26 00:54:46 +00:00
|
|
|
"@babel/plugin-transform-react-inline-elements": "^7.9.0",
|
2020-03-26 03:44:47 +00:00
|
|
|
"@babel/plugin-transform-runtime": "^7.9.0",
|
2020-05-08 20:31:06 +01:00
|
|
|
"@babel/preset-env": "^7.9.6",
|
2020-03-31 15:37:30 +01:00
|
|
|
"@babel/preset-react": "^7.9.4",
|
2020-03-02 12:55:52 +00:00
|
|
|
"@babel/runtime": "^7.8.4",
|
2020-05-11 14:50:27 +01:00
|
|
|
"@clusterws/cws": "^2.0.0",
|
2020-02-18 16:22:44 +00:00
|
|
|
"@gamestdio/websocket": "^0.3.2",
|
2020-05-11 19:29:47 +01:00
|
|
|
"@rails/ujs": "^6.0.3",
|
2019-12-24 17:25:51 +00:00
|
|
|
"array-includes": "^3.1.1",
|
2019-12-02 13:59:12 +00:00
|
|
|
"arrow-key-navigation": "^1.1.0",
|
2020-04-13 15:06:14 +01:00
|
|
|
"autoprefixer": "^9.7.6",
|
2020-02-10 11:30:40 +00:00
|
|
|
"axios": "^0.19.2",
|
2020-03-31 14:15:37 +01:00
|
|
|
"babel-loader": "^8.1.0",
|
2018-07-14 02:56:41 +01:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2020-03-26 00:53:31 +00:00
|
|
|
"babel-plugin-preval": "^5.0.0",
|
2020-05-08 20:32:37 +01:00
|
|
|
"babel-plugin-react-intl": "^6.2.0",
|
2019-03-15 14:05:31 +00:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
2018-12-31 17:11:48 +00:00
|
|
|
"babel-runtime": "^6.26.0",
|
2019-12-02 14:18:59 +00:00
|
|
|
"blurhash": "^1.1.3",
|
2017-05-23 12:10:41 +01:00
|
|
|
"classnames": "^2.2.5",
|
2020-01-20 11:59:28 +00:00
|
|
|
"compression-webpack-plugin": "^3.1.0",
|
2019-12-17 18:42:02 +00:00
|
|
|
"copy-webpack-plugin": "^5.1.1",
|
2020-03-09 13:28:25 +00:00
|
|
|
"cross-env": "^7.0.2",
|
2020-05-28 12:01:41 +01:00
|
|
|
"css-loader": "^3.5.3",
|
2019-03-15 14:05:31 +00:00
|
|
|
"cssnano": "^4.1.10",
|
2017-07-25 00:05:51 +01:00
|
|
|
"detect-passive-events": "^1.0.2",
|
2019-10-29 02:12:05 +00:00
|
|
|
"dotenv": "^8.2.0",
|
2019-03-30 00:41:35 +00:00
|
|
|
"emoji-mart": "Gargron/emoji-mart#build",
|
2019-12-11 11:37:08 +00:00
|
|
|
"es6-symbol": "^3.1.3",
|
2017-02-26 00:34:56 +00:00
|
|
|
"escape-html": "^1.0.3",
|
2018-05-09 07:41:07 +01:00
|
|
|
"exif-js": "^2.3.0",
|
2019-05-29 14:53:20 +01:00
|
|
|
"express": "^4.17.1",
|
2020-03-09 13:25:22 +00:00
|
|
|
"file-loader": "^5.1.0",
|
2018-09-28 01:11:14 +01:00
|
|
|
"font-awesome": "^4.7.0",
|
2019-11-18 14:04:53 +00:00
|
|
|
"glob": "^7.1.6",
|
2019-09-18 14:41:50 +01:00
|
|
|
"history": "^4.10.1",
|
2018-12-31 17:11:48 +00:00
|
|
|
"http-link-header": "^1.0.2",
|
2017-10-31 11:23:24 +00:00
|
|
|
"immutable": "^3.8.2",
|
2018-03-27 11:32:30 +01:00
|
|
|
"imports-loader": "^0.8.0",
|
2020-05-21 16:02:00 +01:00
|
|
|
"intersection-observer": "^0.10.0",
|
2016-11-23 17:53:23 +00:00
|
|
|
"intl": "^1.2.5",
|
2017-12-03 15:55:53 +00:00
|
|
|
"intl-messageformat": "^2.2.0",
|
2019-07-22 08:27:44 +01:00
|
|
|
"intl-relativeformat": "^6.4.3",
|
2019-12-30 15:07:27 +00:00
|
|
|
"is-nan": "^1.3.0",
|
2019-05-29 15:17:01 +01:00
|
|
|
"js-yaml": "^3.13.1",
|
2019-07-15 17:06:30 +01:00
|
|
|
"lodash": "^4.17.14",
|
2017-05-25 13:09:55 +01:00
|
|
|
"mark-loader": "^0.1.6",
|
2018-12-31 17:11:48 +00:00
|
|
|
"marky": "^1.2.1",
|
2019-12-24 17:38:44 +00:00
|
|
|
"mini-css-extract-plugin": "^0.9.0",
|
2020-04-13 15:11:52 +01:00
|
|
|
"mkdirp": "^1.0.4",
|
2017-06-27 12:46:11 +01:00
|
|
|
"npmlog": "^4.1.2",
|
2017-05-11 10:26:06 +01:00
|
|
|
"object-assign": "^4.1.1",
|
2017-07-14 00:59:34 +01:00
|
|
|
"object-fit-images": "^3.2.3",
|
2019-12-24 18:15:44 +00:00
|
|
|
"object.values": "^1.1.1",
|
2019-06-03 13:12:34 +01:00
|
|
|
"offline-plugin": "^5.0.7",
|
2018-07-14 02:56:41 +01:00
|
|
|
"path-complete-extname": "^1.0.0",
|
2017-06-27 12:46:11 +01:00
|
|
|
"pg": "^6.4.0",
|
2018-09-14 16:59:48 +01:00
|
|
|
"postcss-loader": "^3.0.0",
|
2017-07-14 00:59:34 +01:00
|
|
|
"postcss-object-fit-images": "^1.1.2",
|
2020-02-18 16:22:44 +00:00
|
|
|
"promise.prototype.finally": "^3.1.2",
|
2017-05-29 17:23:28 +01:00
|
|
|
"prop-types": "^15.5.10",
|
2017-05-04 14:52:08 +01:00
|
|
|
"punycode": "^2.1.0",
|
2020-03-31 14:10:25 +01:00
|
|
|
"react": "^16.13.1",
|
2020-05-11 14:51:14 +01:00
|
|
|
"react-dom": "^16.13.1",
|
2018-12-31 17:11:48 +00:00
|
|
|
"react-hotkeys": "^1.1.4",
|
2020-03-18 10:40:49 +00:00
|
|
|
"react-immutable-proptypes": "^2.2.0",
|
2017-10-31 11:23:24 +00:00
|
|
|
"react-immutable-pure-component": "^1.1.1",
|
2019-06-03 16:14:17 +01:00
|
|
|
"react-intl": "^2.9.0",
|
2019-01-16 18:47:46 +00:00
|
|
|
"react-masonry-infinite": "^1.2.2",
|
2017-10-31 11:23:24 +00:00
|
|
|
"react-motion": "^0.5.2",
|
2019-11-11 13:24:27 +00:00
|
|
|
"react-notification": "^6.8.5",
|
2019-11-04 15:23:26 +00:00
|
|
|
"react-overlays": "^0.9.1",
|
2020-02-24 12:54:19 +00:00
|
|
|
"react-redux": "^7.2.0",
|
2019-08-20 01:19:01 +01:00
|
|
|
"react-redux-loading-bar": "^4.0.8",
|
2017-06-20 19:40:03 +01:00
|
|
|
"react-router-dom": "^4.1.1",
|
2017-10-31 21:58:38 +00:00
|
|
|
"react-router-scroll-4": "^1.0.0-beta.1",
|
2020-03-26 00:57:34 +00:00
|
|
|
"react-select": "^3.1.0",
|
2018-05-27 20:45:30 +01:00
|
|
|
"react-sparklines": "^1.7.0",
|
2020-02-17 16:57:29 +00:00
|
|
|
"react-swipeable-views": "^0.13.9",
|
2019-11-18 13:30:10 +00:00
|
|
|
"react-textarea-autosize": "^7.1.2",
|
2019-11-04 14:15:23 +00:00
|
|
|
"react-toggle": "^4.1.1",
|
2020-03-18 10:55:31 +00:00
|
|
|
"redis": "^3.0.2",
|
2019-12-30 14:54:43 +00:00
|
|
|
"redux": "^4.0.5",
|
2017-05-29 17:23:28 +01:00
|
|
|
"redux-immutable": "^4.0.0",
|
2017-02-26 00:23:44 +00:00
|
|
|
"redux-thunk": "^2.2.0",
|
2020-02-24 08:50:18 +00:00
|
|
|
"rellax": "^1.12.1",
|
2017-05-24 16:55:00 +01:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2018-12-31 17:11:48 +00:00
|
|
|
"reselect": "^4.0.0",
|
2020-02-17 16:58:14 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2020-05-28 12:02:34 +01:00
|
|
|
"sass": "^1.26.5",
|
2020-01-13 17:53:42 +00:00
|
|
|
"sass-loader": "^8.0.2",
|
2020-02-19 21:36:52 +00:00
|
|
|
"stacktrace-js": "^2.0.2",
|
2020-03-31 14:11:00 +01:00
|
|
|
"stringz": "^2.1.0",
|
2017-10-03 12:11:22 +01:00
|
|
|
"substring-trie": "^1.0.2",
|
2020-05-12 02:00:13 +01:00
|
|
|
"terser-webpack-plugin": "^3.0.1",
|
2020-05-28 15:18:32 +01:00
|
|
|
"tesseract.js": "^2.1.1",
|
2017-05-28 15:25:26 +01:00
|
|
|
"throng": "^4.0.0",
|
2017-05-31 14:11:33 +01:00
|
|
|
"tiny-queue": "^0.2.1",
|
2020-05-28 11:58:58 +01:00
|
|
|
"uuid": "^8.1.0",
|
2020-05-08 20:23:33 +01:00
|
|
|
"wavesurfer.js": "^3.3.3",
|
2020-05-12 01:20:25 +01:00
|
|
|
"webpack": "^4.43.0",
|
2018-12-31 17:11:48 +00:00
|
|
|
"webpack-assets-manifest": "^3.1.1",
|
2020-05-08 20:24:15 +01:00
|
|
|
"webpack-bundle-analyzer": "^3.7.0",
|
2020-02-24 08:50:25 +00:00
|
|
|
"webpack-cli": "^3.3.11",
|
2019-03-15 14:05:31 +00:00
|
|
|
"webpack-merge": "^4.2.1",
|
2020-05-28 11:57:42 +01:00
|
|
|
"wicg-inert": "^3.0.3"
|
2017-04-10 23:36:03 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-02 12:19:16 +01:00
|
|
|
"babel-eslint": "^10.0.3",
|
2020-03-31 14:12:52 +01:00
|
|
|
"babel-jest": "^25.2.4",
|
2019-12-25 00:15:03 +00:00
|
|
|
"enzyme": "^3.11.0",
|
2020-01-06 10:42:03 +00:00
|
|
|
"enzyme-adapter-react-16": "^1.15.2",
|
2019-12-30 12:54:04 +00:00
|
|
|
"eslint": "^6.8.0",
|
2020-05-21 16:17:14 +01:00
|
|
|
"eslint-plugin-import": "~2.20.2",
|
2019-07-15 17:24:26 +01:00
|
|
|
"eslint-plugin-jsx-a11y": "~6.2.3",
|
2019-07-01 13:29:56 +01:00
|
|
|
"eslint-plugin-promise": "~4.2.1",
|
2020-03-09 13:33:58 +00:00
|
|
|
"eslint-plugin-react": "~7.19.0",
|
2020-05-08 17:56:07 +01:00
|
|
|
"jest": "^25.4.0",
|
2018-12-31 17:11:48 +00:00
|
|
|
"raf": "^3.4.1",
|
2018-07-14 02:56:41 +01:00
|
|
|
"react-intl-translations-manager": "^5.0.3",
|
2020-05-11 14:21:31 +01:00
|
|
|
"react-test-renderer": "^16.13.1",
|
2019-06-04 16:23:18 +01:00
|
|
|
"sass-lint": "^1.13.1",
|
2020-05-21 15:34:51 +01:00
|
|
|
"webpack-dev-server": "^3.11.0",
|
2020-03-31 14:15:06 +01:00
|
|
|
"yargs": "^15.3.1"
|
2020-04-04 22:24:59 +01:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"kind-of": "^6.0.3"
|
2016-08-24 16:56:44 +01:00
|
|
|
}
|
|
|
|
}
|