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