2016-08-24 17:56:44 +02:00
|
|
|
{
|
2019-09-19 19:58:14 +02:00
|
|
|
"name": "@tootsuite/mastodon",
|
2018-02-27 01:52:27 +01:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-12-25 15:02:08 +01:00
|
|
|
"engines": {
|
2019-08-30 07:41:38 +02:00
|
|
|
"node": ">=8.12 <13"
|
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",
|
|
|
|
"test:lint:js": "eslint --ext=js .",
|
|
|
|
"test:lint:sass": "sass-lint -v",
|
2018-03-06 21:36:46 +01:00
|
|
|
"test:jest": "cross-env NODE_ENV=test jest --coverage"
|
2016-10-10 04:01:10 +02:00
|
|
|
},
|
2017-04-26 01:51:51 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/tootsuite/mastodon.git"
|
|
|
|
},
|
2018-09-14 17:59:48 +02:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"IE >= 11",
|
2019-01-07 08:17:35 +01:00
|
|
|
"iOS >= 9",
|
|
|
|
"not dead"
|
2018-09-14 17:59:48 +02:00
|
|
|
],
|
2019-03-15 15:05:31 +01: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 16:11:45 +02:00
|
|
|
"private": true,
|
2017-01-11 15:39:31 +01:00
|
|
|
"dependencies": {
|
2019-12-02 13:38:53 +01:00
|
|
|
"@babel/core": "^7.7.4",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.7.4",
|
2019-11-27 05:13:55 +01:00
|
|
|
"@babel/plugin-transform-react-inline-elements": "^7.7.4",
|
2019-11-27 03:35:39 +01:00
|
|
|
"@babel/plugin-transform-runtime": "^7.7.4",
|
2019-11-27 04:24:13 +01:00
|
|
|
"@babel/preset-env": "^7.7.4",
|
2019-12-02 13:38:53 +01:00
|
|
|
"@babel/preset-react": "^7.7.4",
|
2019-11-27 03:36:09 +01:00
|
|
|
"@babel/runtime": "^7.7.4",
|
2019-11-11 14:15:31 +01:00
|
|
|
"@clusterws/cws": "^0.16.0",
|
2017-05-11 11:26:06 +02:00
|
|
|
"array-includes": "^3.0.3",
|
2019-12-02 14:59:12 +01:00
|
|
|
"arrow-key-navigation": "^1.1.0",
|
2019-07-29 15:06:15 +02:00
|
|
|
"autoprefixer": "^9.6.1",
|
2019-05-31 13:48:59 +02:00
|
|
|
"axios": "^0.19.0",
|
2019-06-25 15:24:49 +02:00
|
|
|
"babel-loader": "^8.0.6",
|
2018-07-14 03:56:41 +02:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2019-11-18 14:43:49 +01:00
|
|
|
"babel-plugin-preval": "^4.0.0",
|
2019-11-11 14:45:58 +01:00
|
|
|
"babel-plugin-react-intl": "^3.4.1",
|
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",
|
2019-12-02 15:18:59 +01:00
|
|
|
"blurhash": "^1.1.3",
|
2017-05-23 13:10:41 +02:00
|
|
|
"classnames": "^2.2.5",
|
2019-07-08 09:49:47 +02:00
|
|
|
"compression-webpack-plugin": "^3.0.0",
|
2019-11-18 14:10:46 +01:00
|
|
|
"copy-webpack-plugin": "^5.0.5",
|
2019-10-21 12:16:01 +02:00
|
|
|
"cross-env": "^6.0.3",
|
2019-08-12 13:07:57 +02:00
|
|
|
"css-loader": "^3.2.0",
|
2019-03-15 15:05:31 +01:00
|
|
|
"cssnano": "^4.1.10",
|
2017-07-25 01:05:51 +02:00
|
|
|
"detect-passive-events": "^1.0.2",
|
2019-10-29 03:12:05 +01:00
|
|
|
"dotenv": "^8.2.0",
|
2019-03-30 01:41:35 +01:00
|
|
|
"emoji-mart": "Gargron/emoji-mart#build",
|
2019-09-16 12:16:02 +02:00
|
|
|
"es6-symbol": "^3.1.2",
|
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",
|
2019-05-29 15:53:20 +02:00
|
|
|
"express": "^4.17.1",
|
2019-08-19 15:26:05 +02:00
|
|
|
"file-loader": "^4.2.0",
|
2018-09-28 02:11:14 +02:00
|
|
|
"font-awesome": "^4.7.0",
|
2019-11-18 15:04:53 +01:00
|
|
|
"glob": "^7.1.6",
|
2019-09-18 15:41:50 +02:00
|
|
|
"history": "^4.10.1",
|
2018-12-31 18:11:48 +01:00
|
|
|
"http-link-header": "^1.0.2",
|
2017-10-31 12:23:24 +01:00
|
|
|
"immutable": "^3.8.2",
|
2018-03-27 12:32:30 +02:00
|
|
|
"imports-loader": "^0.8.0",
|
2019-06-04 17:56:31 +02:00
|
|
|
"intersection-observer": "^0.7.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",
|
2017-05-11 11:26:06 +02:00
|
|
|
"is-nan": "^1.2.1",
|
2019-05-29 16:17:01 +02:00
|
|
|
"js-yaml": "^3.13.1",
|
2019-07-15 18:06:30 +02:00
|
|
|
"lodash": "^4.17.14",
|
2017-05-25 14:09:55 +02:00
|
|
|
"mark-loader": "^0.1.6",
|
2018-12-31 18:11:48 +01:00
|
|
|
"marky": "^1.2.1",
|
2019-09-23 12:19:52 +02:00
|
|
|
"mini-css-extract-plugin": "^0.8.0",
|
2017-05-22 15:06:06 +02:00
|
|
|
"mkdirp": "^0.5.1",
|
2017-06-27 13:46:11 +02:00
|
|
|
"npmlog": "^4.1.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",
|
2019-05-30 13:37:09 +02:00
|
|
|
"object.values": "^1.1.0",
|
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",
|
2017-06-27 13:46:11 +02:00
|
|
|
"pg": "^6.4.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",
|
2017-05-29 18:23:28 +02:00
|
|
|
"prop-types": "^15.5.10",
|
2017-05-04 15:52:08 +02:00
|
|
|
"punycode": "^2.1.0",
|
2019-12-02 14:55:08 +01:00
|
|
|
"rails-ujs": "^5.2.4",
|
2019-10-21 18:51:05 +02:00
|
|
|
"react": "^16.10.2",
|
2019-11-19 21:28:00 +01:00
|
|
|
"react-dom": "^16.12.0",
|
2018-12-31 18:11:48 +01:00
|
|
|
"react-hotkeys": "^1.1.4",
|
2016-08-24 17:56:44 +02:00
|
|
|
"react-immutable-proptypes": "^2.1.0",
|
2017-10-31 12:23:24 +01:00
|
|
|
"react-immutable-pure-component": "^1.1.1",
|
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",
|
2019-11-04 16:23:26 +01:00
|
|
|
"react-overlays": "^0.9.1",
|
2019-08-26 11:54:51 +02:00
|
|
|
"react-redux": "^7.1.1",
|
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",
|
2019-11-18 14:07:31 +01:00
|
|
|
"react-select": "^3.0.8",
|
2018-05-27 21:45:30 +02:00
|
|
|
"react-sparklines": "^1.7.0",
|
2019-06-04 13:28:58 +02:00
|
|
|
"react-swipeable-views": "^0.13.3",
|
2019-11-18 14:30:10 +01:00
|
|
|
"react-textarea-autosize": "^7.1.2",
|
2019-11-04 15:15:23 +01:00
|
|
|
"react-toggle": "^4.1.1",
|
2017-05-29 18:23:28 +02:00
|
|
|
"redis": "^2.7.1",
|
2019-08-19 15:29:01 +02:00
|
|
|
"redux": "^4.0.4",
|
2017-05-29 18:23:28 +02:00
|
|
|
"redux-immutable": "^4.0.0",
|
2017-02-26 01:23:44 +01:00
|
|
|
"redux-thunk": "^2.2.0",
|
2019-06-17 14:17:32 +02:00
|
|
|
"rellax": "^1.10.0",
|
2017-05-24 17:55:00 +02:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2018-12-31 18:11:48 +01:00
|
|
|
"reselect": "^4.0.0",
|
2019-08-19 15:24:31 +02:00
|
|
|
"rimraf": "^3.0.0",
|
2019-11-06 16:12:48 +01:00
|
|
|
"sass": "^1.23.3",
|
2019-11-06 17:15:20 +01:00
|
|
|
"sass-loader": "^8.0.0",
|
2019-06-25 20:51:35 +02:00
|
|
|
"stringz": "^2.0.0",
|
2017-10-03 13:11:22 +02:00
|
|
|
"substring-trie": "^1.0.2",
|
2019-10-29 02:59:12 +01:00
|
|
|
"terser-webpack-plugin": "^2.2.1",
|
2019-11-24 04:16:41 +01:00
|
|
|
"tesseract.js": "^2.0.0-alpha.16",
|
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",
|
2019-11-11 14:22:06 +01:00
|
|
|
"uuid": "^3.3.3",
|
2019-11-04 15:21:40 +01:00
|
|
|
"wavesurfer.js": "^3.2.0",
|
2019-11-06 17:15:20 +01:00
|
|
|
"webpack": "^4.41.2",
|
2018-12-31 18:11:48 +01:00
|
|
|
"webpack-assets-manifest": "^3.1.1",
|
2019-10-28 12:46:31 +01:00
|
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
2019-11-04 16:28:47 +01:00
|
|
|
"webpack-cli": "^3.3.10",
|
2019-03-15 15:05:31 +01:00
|
|
|
"webpack-merge": "^4.2.1",
|
2019-11-04 13:03:44 +01:00
|
|
|
"websocket.js": "^0.1.12",
|
|
|
|
"wicg-inert": "^3.0.0"
|
2017-04-11 00:36:03 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-02 13:19:16 +02:00
|
|
|
"babel-eslint": "^10.0.3",
|
2019-09-23 12:19:13 +02:00
|
|
|
"babel-jest": "^24.9.0",
|
2019-06-17 17:04:24 +02:00
|
|
|
"enzyme": "^3.10.0",
|
2019-11-11 14:50:55 +01:00
|
|
|
"enzyme-adapter-react-16": "^1.15.1",
|
2019-12-02 14:53:03 +01:00
|
|
|
"eslint": "^6.7.2",
|
2019-09-16 12:15:21 +02:00
|
|
|
"eslint-plugin-import": "~2.18.2",
|
2019-07-15 18:24:26 +02:00
|
|
|
"eslint-plugin-jsx-a11y": "~6.2.3",
|
2019-07-01 14:29:56 +02:00
|
|
|
"eslint-plugin-promise": "~4.2.1",
|
2019-10-28 12:42:47 +01:00
|
|
|
"eslint-plugin-react": "~7.16.0",
|
2019-09-09 13:07:02 +02:00
|
|
|
"jest": "^24.9.0",
|
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",
|
2019-11-04 15:27:07 +01:00
|
|
|
"react-test-renderer": "^16.11.0",
|
2019-06-04 17:23:18 +02:00
|
|
|
"sass-lint": "^1.13.1",
|
2019-11-04 15:27:50 +01:00
|
|
|
"webpack-dev-server": "^3.9.0",
|
2019-07-29 20:42:19 +02:00
|
|
|
"yargs": "^13.3.0"
|
2016-08-24 17:56:44 +02:00
|
|
|
}
|
|
|
|
}
|