2016-08-25 00:56:44 +09:00
|
|
|
{
|
2019-09-20 02:58:14 +09:00
|
|
|
"name": "@tootsuite/mastodon",
|
2018-02-27 09:52:27 +09:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-12-25 23:02:08 +09:00
|
|
|
"engines": {
|
2019-08-30 14:41:38 +09:00
|
|
|
"node": ">=8.12 <13"
|
2017-12-25 23:02:08 +09:00
|
|
|
},
|
2016-10-10 11:01:10 +09:00
|
|
|
"scripts": {
|
2017-04-26 08:51:51 +09:00
|
|
|
"postversion": "git push --tags",
|
2018-09-15 00:59:48 +09: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 09:04:16 +09:00
|
|
|
"manage:translations": "node ./config/webpack/translationRunner.js",
|
2017-06-26 11:49:39 +09:00
|
|
|
"start": "node ./streaming/index.js",
|
2019-06-07 01:51:46 +09: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-07 05:36:46 +09:00
|
|
|
"test:jest": "cross-env NODE_ENV=test jest --coverage"
|
2016-10-10 11:01:10 +09:00
|
|
|
},
|
2017-04-26 08:51:51 +09:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/tootsuite/mastodon.git"
|
|
|
|
},
|
2018-09-15 00:59:48 +09:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"IE >= 11",
|
2019-01-07 16:17:35 +09:00
|
|
|
"iOS >= 9",
|
|
|
|
"not dead"
|
2018-09-15 00:59:48 +09:00
|
|
|
],
|
2019-03-15 23:05:31 +09: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 23:11:45 +09:00
|
|
|
"private": true,
|
2017-01-11 23:39:31 +09:00
|
|
|
"dependencies": {
|
2019-06-04 07:00:35 +09:00
|
|
|
"@babel/core": "^7.4.5",
|
2019-08-26 22:39:42 +09:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
2019-06-04 07:00:35 +09:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.4.4",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
|
2019-01-01 02:11:48 +09:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
|
|
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
|
|
|
|
"@babel/plugin-transform-react-jsx-self": "^7.2.0",
|
2019-08-05 18:25:56 +09:00
|
|
|
"@babel/plugin-transform-react-jsx-source": "^7.5.0",
|
2019-09-02 20:18:22 +09:00
|
|
|
"@babel/plugin-transform-runtime": "^7.5.5",
|
2019-09-09 19:42:39 +09:00
|
|
|
"@babel/preset-env": "^7.6.0",
|
2018-09-15 00:59:48 +09:00
|
|
|
"@babel/preset-react": "^7.0.0",
|
2019-07-16 01:04:46 +09:00
|
|
|
"@babel/runtime": "^7.5.4",
|
2019-07-22 16:27:16 +09:00
|
|
|
"@clusterws/cws": "^0.15.0",
|
2017-05-11 18:26:06 +09:00
|
|
|
"array-includes": "^3.0.3",
|
2019-07-29 22:06:15 +09:00
|
|
|
"autoprefixer": "^9.6.1",
|
2019-05-31 20:48:59 +09:00
|
|
|
"axios": "^0.19.0",
|
2019-06-25 22:24:49 +09:00
|
|
|
"babel-loader": "^8.0.6",
|
2018-07-14 10:56:41 +09:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2018-09-15 00:59:48 +09:00
|
|
|
"babel-plugin-preval": "^3.0.1",
|
2019-06-04 20:52:48 +09:00
|
|
|
"babel-plugin-react-intl": "^3.1.3",
|
2019-03-15 23:05:31 +09:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
2019-01-01 02:11:48 +09:00
|
|
|
"babel-runtime": "^6.26.0",
|
2019-04-27 10:24:09 +09:00
|
|
|
"blurhash": "^1.0.0",
|
2017-05-23 20:10:41 +09:00
|
|
|
"classnames": "^2.2.5",
|
2019-07-08 16:49:47 +09:00
|
|
|
"compression-webpack-plugin": "^3.0.0",
|
2019-08-15 22:13:26 +09:00
|
|
|
"copy-webpack-plugin": "^5.0.4",
|
2018-07-14 10:56:41 +09:00
|
|
|
"cross-env": "^5.1.4",
|
2019-08-12 20:07:57 +09:00
|
|
|
"css-loader": "^3.2.0",
|
2019-03-15 23:05:31 +09:00
|
|
|
"cssnano": "^4.1.10",
|
2017-07-25 08:05:51 +09:00
|
|
|
"detect-passive-events": "^1.0.2",
|
2019-05-31 12:04:11 +09:00
|
|
|
"dotenv": "^8.0.0",
|
2019-03-30 09:41:35 +09:00
|
|
|
"emoji-mart": "Gargron/emoji-mart#build",
|
2019-09-16 19:16:02 +09:00
|
|
|
"es6-symbol": "^3.1.2",
|
2017-02-26 09:34:56 +09:00
|
|
|
"escape-html": "^1.0.3",
|
2018-05-09 15:41:07 +09:00
|
|
|
"exif-js": "^2.3.0",
|
2019-05-29 22:53:20 +09:00
|
|
|
"express": "^4.17.1",
|
2019-08-19 22:26:05 +09:00
|
|
|
"file-loader": "^4.2.0",
|
2018-09-28 09:11:14 +09:00
|
|
|
"font-awesome": "^4.7.0",
|
2017-05-03 09:04:16 +09:00
|
|
|
"glob": "^7.1.1",
|
2019-09-18 22:41:50 +09:00
|
|
|
"history": "^4.10.1",
|
2019-01-01 02:11:48 +09:00
|
|
|
"http-link-header": "^1.0.2",
|
2017-10-31 20:23:24 +09:00
|
|
|
"immutable": "^3.8.2",
|
2018-03-27 19:32:30 +09:00
|
|
|
"imports-loader": "^0.8.0",
|
2019-06-05 00:56:31 +09:00
|
|
|
"intersection-observer": "^0.7.0",
|
2016-11-24 02:53:23 +09:00
|
|
|
"intl": "^1.2.5",
|
2017-12-04 00:55:53 +09:00
|
|
|
"intl-messageformat": "^2.2.0",
|
2019-07-22 16:27:44 +09:00
|
|
|
"intl-relativeformat": "^6.4.3",
|
2017-05-11 18:26:06 +09:00
|
|
|
"is-nan": "^1.2.1",
|
2019-05-29 23:17:01 +09:00
|
|
|
"js-yaml": "^3.13.1",
|
2019-07-16 01:06:30 +09:00
|
|
|
"lodash": "^4.17.14",
|
2017-05-25 21:09:55 +09:00
|
|
|
"mark-loader": "^0.1.6",
|
2019-01-01 02:11:48 +09:00
|
|
|
"marky": "^1.2.1",
|
2019-06-25 22:36:57 +09:00
|
|
|
"mini-css-extract-plugin": "^0.7.0",
|
2017-05-22 22:06:06 +09:00
|
|
|
"mkdirp": "^0.5.1",
|
2017-06-27 20:46:11 +09:00
|
|
|
"npmlog": "^4.1.2",
|
2017-05-11 18:26:06 +09:00
|
|
|
"object-assign": "^4.1.1",
|
2017-07-14 08:59:34 +09:00
|
|
|
"object-fit-images": "^3.2.3",
|
2019-05-30 20:37:09 +09:00
|
|
|
"object.values": "^1.1.0",
|
2019-06-03 21:12:34 +09:00
|
|
|
"offline-plugin": "^5.0.7",
|
2018-07-14 10:56:41 +09:00
|
|
|
"path-complete-extname": "^1.0.0",
|
2017-06-27 20:46:11 +09:00
|
|
|
"pg": "^6.4.0",
|
2018-09-15 00:59:48 +09:00
|
|
|
"postcss-loader": "^3.0.0",
|
2017-07-14 08:59:34 +09:00
|
|
|
"postcss-object-fit-images": "^1.1.2",
|
2017-05-30 01:23:28 +09:00
|
|
|
"prop-types": "^15.5.10",
|
2017-05-04 22:52:08 +09:00
|
|
|
"punycode": "^2.1.0",
|
2019-05-31 20:52:05 +09:00
|
|
|
"rails-ujs": "^5.2.3",
|
2019-06-04 06:59:54 +09:00
|
|
|
"react": "^16.8.6",
|
|
|
|
"react-dom": "^16.8.6",
|
2019-01-01 02:11:48 +09:00
|
|
|
"react-hotkeys": "^1.1.4",
|
2016-08-25 00:56:44 +09:00
|
|
|
"react-immutable-proptypes": "^2.1.0",
|
2017-10-31 20:23:24 +09:00
|
|
|
"react-immutable-pure-component": "^1.1.1",
|
2019-06-04 00:14:17 +09:00
|
|
|
"react-intl": "^2.9.0",
|
2019-01-17 03:47:46 +09:00
|
|
|
"react-masonry-infinite": "^1.2.2",
|
2017-10-31 20:23:24 +09:00
|
|
|
"react-motion": "^0.5.2",
|
2018-09-15 00:59:48 +09:00
|
|
|
"react-notification": "^6.8.4",
|
2017-10-31 20:23:24 +09:00
|
|
|
"react-overlays": "^0.8.3",
|
2019-08-26 18:54:51 +09:00
|
|
|
"react-redux": "^7.1.1",
|
2019-08-20 09:19:01 +09:00
|
|
|
"react-redux-loading-bar": "^4.0.8",
|
2017-06-21 03:40:03 +09:00
|
|
|
"react-router-dom": "^4.1.1",
|
2017-11-01 06:58:38 +09:00
|
|
|
"react-router-scroll-4": "^1.0.0-beta.1",
|
2019-05-30 20:38:27 +09:00
|
|
|
"react-select": "^2.4.4",
|
2018-05-28 04:45:30 +09:00
|
|
|
"react-sparklines": "^1.7.0",
|
2019-06-04 20:28:58 +09:00
|
|
|
"react-swipeable-views": "^0.13.3",
|
2019-01-01 02:11:48 +09:00
|
|
|
"react-textarea-autosize": "^7.1.0",
|
2017-05-30 01:23:28 +09:00
|
|
|
"react-toggle": "^4.0.1",
|
|
|
|
"redis": "^2.7.1",
|
2019-08-19 22:29:01 +09:00
|
|
|
"redux": "^4.0.4",
|
2017-05-30 01:23:28 +09:00
|
|
|
"redux-immutable": "^4.0.0",
|
2017-02-26 09:23:44 +09:00
|
|
|
"redux-thunk": "^2.2.0",
|
2019-06-17 21:17:32 +09:00
|
|
|
"rellax": "^1.10.0",
|
2017-05-25 00:55:00 +09:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2019-01-01 02:11:48 +09:00
|
|
|
"reselect": "^4.0.0",
|
2019-08-19 22:24:31 +09:00
|
|
|
"rimraf": "^3.0.0",
|
2019-08-12 21:19:49 +09:00
|
|
|
"sass": "^1.22.9",
|
2018-07-14 10:56:41 +09:00
|
|
|
"sass-loader": "^7.0.3",
|
2019-06-26 03:51:35 +09:00
|
|
|
"stringz": "^2.0.0",
|
2017-10-03 20:11:22 +09:00
|
|
|
"substring-trie": "^1.0.2",
|
2019-08-12 20:06:04 +09:00
|
|
|
"terser-webpack-plugin": "^1.4.1",
|
2019-09-09 19:40:30 +09:00
|
|
|
"tesseract.js": "^2.0.0-alpha.15",
|
2017-05-28 23:25:26 +09:00
|
|
|
"throng": "^4.0.0",
|
2017-05-31 22:11:33 +09:00
|
|
|
"tiny-queue": "^0.2.1",
|
2017-06-27 20:46:11 +09:00
|
|
|
"uuid": "^3.1.0",
|
2019-08-24 05:38:02 +09:00
|
|
|
"wavesurfer.js": "^3.0.0",
|
2019-07-16 01:13:58 +09:00
|
|
|
"webpack": "^4.35.3",
|
2019-01-01 02:11:48 +09:00
|
|
|
"webpack-assets-manifest": "^3.1.1",
|
2019-06-17 21:17:11 +09:00
|
|
|
"webpack-bundle-analyzer": "^3.3.2",
|
2019-08-26 22:40:38 +09:00
|
|
|
"webpack-cli": "^3.3.7",
|
2019-03-15 23:05:31 +09:00
|
|
|
"webpack-merge": "^4.2.1",
|
2018-07-17 22:29:33 +09:00
|
|
|
"websocket.js": "^0.1.12"
|
2017-04-11 07:36:03 +09:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-02 20:19:16 +09:00
|
|
|
"babel-eslint": "^10.0.3",
|
2019-09-23 19:19:13 +09:00
|
|
|
"babel-jest": "^24.9.0",
|
2019-06-18 00:04:24 +09:00
|
|
|
"enzyme": "^3.10.0",
|
2019-06-18 00:28:28 +09:00
|
|
|
"enzyme-adapter-react-16": "^1.14.0",
|
2019-07-22 17:37:11 +09:00
|
|
|
"eslint": "^6.1.0",
|
2019-09-16 19:15:21 +09:00
|
|
|
"eslint-plugin-import": "~2.18.2",
|
2019-07-16 01:24:26 +09:00
|
|
|
"eslint-plugin-jsx-a11y": "~6.2.3",
|
2019-07-01 21:29:56 +09:00
|
|
|
"eslint-plugin-promise": "~4.2.1",
|
2019-08-05 17:40:35 +09:00
|
|
|
"eslint-plugin-react": "~7.14.3",
|
2019-09-09 20:07:02 +09:00
|
|
|
"jest": "^24.9.0",
|
2019-01-01 02:11:48 +09:00
|
|
|
"raf": "^3.4.1",
|
2018-07-14 10:56:41 +09:00
|
|
|
"react-intl-translations-manager": "^5.0.3",
|
2019-06-04 06:59:54 +09:00
|
|
|
"react-test-renderer": "^16.8.6",
|
2019-06-05 00:23:18 +09:00
|
|
|
"sass-lint": "^1.13.1",
|
2019-08-12 20:08:37 +09:00
|
|
|
"webpack-dev-server": "^3.8.0",
|
2019-07-30 03:42:19 +09:00
|
|
|
"yargs": "^13.3.0"
|
2016-08-25 00:56:44 +09:00
|
|
|
}
|
|
|
|
}
|