2016-08-24 11:56:44 -04:00
|
|
|
{
|
2019-09-19 13:58:14 -04:00
|
|
|
"name": "@tootsuite/mastodon",
|
2018-02-26 19:52:27 -05:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-12-25 09:02:08 -05:00
|
|
|
"engines": {
|
2019-08-30 01:41:38 -04:00
|
|
|
"node": ">=8.12 <13"
|
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",
|
2019-06-06 12:51:46 -04:00
|
|
|
"test:lint:sass": "sass-lint -v",
|
2018-03-06 15:36:46 -05:00
|
|
|
"test:jest": "cross-env NODE_ENV=test jest --coverage"
|
2016-10-09 22:01:10 -04:00
|
|
|
},
|
2017-04-25 19:51:51 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/tootsuite/mastodon.git"
|
|
|
|
},
|
2018-09-14 11:59:48 -04:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"IE >= 11",
|
2019-01-07 02:17:35 -05:00
|
|
|
"iOS >= 9",
|
|
|
|
"not dead"
|
2018-09-14 11:59:48 -04:00
|
|
|
],
|
2019-03-15 10:05:31 -04:00
|
|
|
"jest": {
|
|
|
|
"projects": [
|
|
|
|
"<rootDir>/app/javascript/mastodon"
|
|
|
|
],
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"<rootDir>/node_modules/",
|
|
|
|
"<rootDir>/vendor/",
|
|
|
|
"<rootDir>/config/",
|
|
|
|
"<rootDir>/log/",
|
|
|
|
"<rootDir>/public/",
|
2019-03-16 08:52:55 -04:00
|
|
|
"<rootDir>/tmp/",
|
|
|
|
"<rootDir>/app/javascript/themes/"
|
2019-03-15 10:05:31 -04:00
|
|
|
],
|
|
|
|
"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 10:11:45 -04:00
|
|
|
"private": true,
|
2017-01-11 09:39:31 -05:00
|
|
|
"dependencies": {
|
2019-12-30 09:55:03 -05:00
|
|
|
"@babel/core": "^7.7.7",
|
2019-12-02 07:38:53 -05:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.7.4",
|
2019-11-26 23:13:55 -05:00
|
|
|
"@babel/plugin-transform-react-inline-elements": "^7.7.4",
|
2019-12-11 06:31:53 -05:00
|
|
|
"@babel/plugin-transform-runtime": "^7.7.6",
|
2019-12-24 12:42:11 -05:00
|
|
|
"@babel/preset-env": "^7.7.7",
|
2019-12-02 07:38:53 -05:00
|
|
|
"@babel/preset-react": "^7.7.4",
|
2019-12-24 19:15:31 -05:00
|
|
|
"@babel/runtime": "^7.7.7",
|
2019-12-04 06:45:49 -05:00
|
|
|
"@gamestdio/websocket": "^0.3.2",
|
2020-01-06 08:44:02 -05:00
|
|
|
"@clusterws/cws": "^0.17.3",
|
2019-12-24 12:25:51 -05:00
|
|
|
"array-includes": "^3.1.1",
|
2017-10-13 12:01:14 -04:00
|
|
|
"atrament": "^0.2.3",
|
2019-12-02 08:59:12 -05:00
|
|
|
"arrow-key-navigation": "^1.1.0",
|
2019-12-02 12:37:22 -05:00
|
|
|
"autoprefixer": "^9.7.3",
|
2019-05-31 07:48:59 -04:00
|
|
|
"axios": "^0.19.0",
|
2019-06-25 09:24:49 -04:00
|
|
|
"babel-loader": "^8.0.6",
|
2018-07-13 21:56:41 -04:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2019-11-18 08:43:49 -05:00
|
|
|
"babel-plugin-preval": "^4.0.0",
|
2019-11-11 08:45:58 -05:00
|
|
|
"babel-plugin-react-intl": "^3.4.1",
|
2019-03-15 10:05:31 -04:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
2018-12-31 12:11:48 -05:00
|
|
|
"babel-runtime": "^6.26.0",
|
2019-12-02 09:18:59 -05:00
|
|
|
"blurhash": "^1.1.3",
|
2017-05-23 07:10:41 -04:00
|
|
|
"classnames": "^2.2.5",
|
2019-12-16 20:19:58 -05:00
|
|
|
"compression-webpack-plugin": "^3.0.1",
|
2019-12-17 13:42:02 -05:00
|
|
|
"copy-webpack-plugin": "^5.1.1",
|
2019-10-21 06:16:01 -04:00
|
|
|
"cross-env": "^6.0.3",
|
2020-01-06 05:39:37 -05:00
|
|
|
"css-loader": "^3.4.1",
|
2019-03-15 10:05:31 -04:00
|
|
|
"cssnano": "^4.1.10",
|
2017-07-24 19:05:51 -04:00
|
|
|
"detect-passive-events": "^1.0.2",
|
2019-10-28 22:12:05 -04:00
|
|
|
"dotenv": "^8.2.0",
|
2019-03-27 09:04:58 -04:00
|
|
|
"emoji-mart": "Gargron/emoji-mart#build",
|
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",
|
2019-05-29 09:53:20 -04:00
|
|
|
"express": "^4.17.1",
|
2019-08-19 09:26:05 -04:00
|
|
|
"file-loader": "^4.2.0",
|
2018-09-06 10:09:57 -04:00
|
|
|
"favico.js": "^0.3.10",
|
2017-05-02 20:04:16 -04:00
|
|
|
"font-awesome": "^4.7.0",
|
2019-11-18 09:04:53 -05:00
|
|
|
"glob": "^7.1.6",
|
2019-09-18 09:41:50 -04:00
|
|
|
"history": "^4.10.1",
|
2018-12-31 12:11:48 -05:00
|
|
|
"http-link-header": "^1.0.2",
|
2017-10-31 07:23:24 -04:00
|
|
|
"immutable": "^3.8.2",
|
2018-03-27 06:32:30 -04:00
|
|
|
"imports-loader": "^0.8.0",
|
2019-06-04 11:56:31 -04:00
|
|
|
"intersection-observer": "^0.7.0",
|
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",
|
2019-12-30 10:07:27 -05:00
|
|
|
"is-nan": "^1.3.0",
|
2019-05-29 10:17:01 -04:00
|
|
|
"js-yaml": "^3.13.1",
|
2019-07-15 12:06:30 -04:00
|
|
|
"lodash": "^4.17.14",
|
2017-05-25 08:09:55 -04:00
|
|
|
"mark-loader": "^0.1.6",
|
2018-12-31 12:11:48 -05:00
|
|
|
"marky": "^1.2.1",
|
2019-12-24 12:38:44 -05:00
|
|
|
"mini-css-extract-plugin": "^0.9.0",
|
2017-05-22 09:06:06 -04:00
|
|
|
"mkdirp": "^0.5.1",
|
2017-06-27 07:46:11 -04:00
|
|
|
"npmlog": "^4.1.2",
|
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",
|
2019-12-24 13:15:44 -05:00
|
|
|
"object.values": "^1.1.1",
|
2019-06-03 08:12:34 -04:00
|
|
|
"offline-plugin": "^5.0.7",
|
2018-07-13 21:56:41 -04:00
|
|
|
"path-complete-extname": "^1.0.0",
|
2017-06-27 07:46:11 -04:00
|
|
|
"pg": "^6.4.0",
|
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",
|
2017-05-29 12:23:28 -04:00
|
|
|
"prop-types": "^15.5.10",
|
2017-05-04 09:52:08 -04:00
|
|
|
"punycode": "^2.1.0",
|
2019-12-02 08:55:08 -05:00
|
|
|
"rails-ujs": "^5.2.4",
|
2019-12-11 06:31:03 -05:00
|
|
|
"react": "^16.12.0",
|
2019-11-19 15:28:00 -05:00
|
|
|
"react-dom": "^16.12.0",
|
2018-12-31 12:11:48 -05:00
|
|
|
"react-hotkeys": "^1.1.4",
|
2016-08-24 11:56:44 -04:00
|
|
|
"react-immutable-proptypes": "^2.1.0",
|
2017-10-31 07:23:24 -04:00
|
|
|
"react-immutable-pure-component": "^1.1.1",
|
2019-06-03 11:14:17 -04:00
|
|
|
"react-intl": "^2.9.0",
|
2019-01-16 13:47:46 -05:00
|
|
|
"react-masonry-infinite": "^1.2.2",
|
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",
|
2019-11-04 10:23:26 -05:00
|
|
|
"react-overlays": "^0.9.1",
|
2019-12-17 13:54:42 -05:00
|
|
|
"react-redux": "^7.1.3",
|
2019-08-19 20:19:01 -04:00
|
|
|
"react-redux-loading-bar": "^4.0.8",
|
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",
|
2019-11-18 08:07:31 -05:00
|
|
|
"react-select": "^3.0.8",
|
2018-05-27 15:45:30 -04:00
|
|
|
"react-sparklines": "^1.7.0",
|
2019-06-04 07:28:58 -04:00
|
|
|
"react-swipeable-views": "^0.13.3",
|
2019-11-18 08:30:10 -05:00
|
|
|
"react-textarea-autosize": "^7.1.2",
|
2019-11-04 09:15:23 -05:00
|
|
|
"react-toggle": "^4.1.1",
|
2017-05-29 12:23:28 -04:00
|
|
|
"redis": "^2.7.1",
|
2019-12-30 09:54:43 -05:00
|
|
|
"redux": "^4.0.5",
|
2017-05-29 12:23:28 -04:00
|
|
|
"redux-immutable": "^4.0.0",
|
2017-02-25 19:23:44 -05:00
|
|
|
"redux-thunk": "^2.2.0",
|
2019-06-17 08:17:32 -04:00
|
|
|
"rellax": "^1.10.0",
|
2017-05-24 11:55:00 -04:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2018-12-31 12:11:48 -05:00
|
|
|
"reselect": "^4.0.0",
|
2019-08-19 09:24:31 -04:00
|
|
|
"rimraf": "^3.0.0",
|
2020-01-06 09:03:26 -05:00
|
|
|
"sass": "^1.24.2",
|
2019-11-06 11:15:20 -05:00
|
|
|
"sass-loader": "^8.0.0",
|
2019-06-25 14:51:35 -04:00
|
|
|
"stringz": "^2.0.0",
|
2017-10-03 07:11:22 -04:00
|
|
|
"substring-trie": "^1.0.2",
|
2019-12-30 09:56:23 -05:00
|
|
|
"terser-webpack-plugin": "^2.3.1",
|
2019-11-23 22:16:41 -05:00
|
|
|
"tesseract.js": "^2.0.0-alpha.16",
|
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",
|
2019-11-11 08:22:06 -05:00
|
|
|
"uuid": "^3.3.3",
|
2020-01-06 08:44:42 -05:00
|
|
|
"wavesurfer.js": "^3.3.0",
|
2019-12-30 11:49:08 -05:00
|
|
|
"webpack": "^4.41.5",
|
2018-12-31 12:11:48 -05:00
|
|
|
"webpack-assets-manifest": "^3.1.1",
|
2019-10-28 07:46:31 -04:00
|
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
2019-11-04 10:28:47 -05:00
|
|
|
"webpack-cli": "^3.3.10",
|
2019-03-15 10:05:31 -04:00
|
|
|
"webpack-merge": "^4.2.1",
|
2019-11-04 07:03:44 -05:00
|
|
|
"wicg-inert": "^3.0.0"
|
2017-04-10 18:36:03 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-02 07:19:16 -04:00
|
|
|
"babel-eslint": "^10.0.3",
|
2019-09-23 06:19:13 -04:00
|
|
|
"babel-jest": "^24.9.0",
|
2019-12-24 19:15:03 -05:00
|
|
|
"enzyme": "^3.11.0",
|
2020-01-06 05:42:03 -05:00
|
|
|
"enzyme-adapter-react-16": "^1.15.2",
|
2019-12-30 07:54:04 -05:00
|
|
|
"eslint": "^6.8.0",
|
2019-12-17 13:42:25 -05:00
|
|
|
"eslint-plugin-import": "~2.19.1",
|
2019-07-15 12:24:26 -04:00
|
|
|
"eslint-plugin-jsx-a11y": "~6.2.3",
|
2019-07-01 08:29:56 -04:00
|
|
|
"eslint-plugin-promise": "~4.2.1",
|
2019-12-02 10:55:32 -05:00
|
|
|
"eslint-plugin-react": "~7.17.0",
|
2019-09-09 07:07:02 -04:00
|
|
|
"jest": "^24.9.0",
|
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",
|
2019-12-30 10:14:42 -05:00
|
|
|
"react-test-renderer": "^16.12.0",
|
2019-06-04 11:23:18 -04:00
|
|
|
"sass-lint": "^1.13.1",
|
2020-01-06 08:30:00 -05:00
|
|
|
"webpack-dev-server": "^3.10.1",
|
2020-01-06 05:41:02 -05:00
|
|
|
"yargs": "^15.1.0"
|
2016-08-24 11:56:44 -04:00
|
|
|
}
|
|
|
|
}
|