2020-03-27 20:59:38 +00:00
|
|
|
{
|
2022-09-04 20:15:54 +00:00
|
|
|
"name": "soapbox",
|
2022-08-29 16:20:56 +00:00
|
|
|
"displayName": "Soapbox",
|
2022-12-25 14:16:04 +00:00
|
|
|
"version": "3.1.0",
|
2022-08-29 16:20:56 +00:00
|
|
|
"description": "Soapbox frontend for the Fediverse.",
|
2020-04-30 17:33:56 +00:00
|
|
|
"homepage": "https://soapbox.pub/",
|
|
|
|
"repository": {
|
2020-05-17 19:44:33 +00:00
|
|
|
"type": "git",
|
2022-09-04 20:15:54 +00:00
|
|
|
"url": "https://gitlab.com/soapbox-pub/soapbox"
|
2020-04-30 17:33:56 +00:00
|
|
|
},
|
2020-05-17 19:44:33 +00:00
|
|
|
"keywords": [
|
|
|
|
"fediverse",
|
|
|
|
"pleroma"
|
|
|
|
],
|
2020-04-30 17:33:56 +00:00
|
|
|
"bugs": {
|
2022-09-04 20:15:54 +00:00
|
|
|
"url": "https://gitlab.com/soapbox-pub/soapbox/-/issues"
|
2020-04-30 17:33:56 +00:00
|
|
|
},
|
2020-03-27 20:59:38 +00:00
|
|
|
"scripts": {
|
2021-09-17 16:26:57 +00:00
|
|
|
"start": "npx webpack-dev-server",
|
2020-04-14 21:50:42 +00:00
|
|
|
"dev": "${npm_execpath} run start",
|
2021-09-17 16:26:57 +00:00
|
|
|
"build": "npx webpack",
|
2022-12-30 16:10:13 +00:00
|
|
|
"audit:fix": "npx yarn-audit-fix",
|
2022-12-29 04:59:39 +00:00
|
|
|
"manage:translations": "npx ts-node ./scripts/translationRunner.ts",
|
2022-04-05 19:32:41 +00:00
|
|
|
"test": "npx cross-env NODE_ENV=test npx jest",
|
2022-06-13 18:26:51 +00:00
|
|
|
"test:coverage": "${npm_execpath} run test --coverage",
|
2022-04-04 15:50:14 +00:00
|
|
|
"test:all": "${npm_execpath} run test:coverage && ${npm_execpath} run lint",
|
|
|
|
"lint": "${npm_execpath} run lint:js && ${npm_execpath} run lint:sass",
|
|
|
|
"lint:js": "npx eslint --ext .js,.jsx,.ts,.tsx . --cache",
|
|
|
|
"lint:sass": "npx stylelint app/styles/**/*.scss",
|
2021-09-15 15:47:10 +00:00
|
|
|
"prepare": "husky install"
|
2020-03-27 20:59:38 +00:00
|
|
|
},
|
2020-03-28 00:35:00 +00:00
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"browserslist": [
|
2021-07-10 02:04:15 +00:00
|
|
|
"> 0.5%",
|
2020-03-28 00:35:00 +00:00
|
|
|
"last 2 versions",
|
2021-09-12 17:02:59 +00:00
|
|
|
"not IE 11",
|
2020-03-28 00:35:00 +00:00
|
|
|
"not dead"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2022-06-01 18:22:49 +00:00
|
|
|
"@babel/core": "^7.18.2",
|
2022-06-01 18:32:01 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.17.12",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
|
2021-07-09 16:35:12 +00:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2022-06-01 18:32:01 +00:00
|
|
|
"@babel/plugin-transform-react-inline-elements": "^7.16.7",
|
|
|
|
"@babel/plugin-transform-react-jsx-self": "^7.17.12",
|
|
|
|
"@babel/plugin-transform-react-jsx-source": "^7.16.7",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.18.2",
|
|
|
|
"@babel/preset-env": "^7.18.2",
|
|
|
|
"@babel/preset-react": "^7.17.12",
|
|
|
|
"@babel/preset-typescript": "^7.17.12",
|
2022-06-01 18:22:49 +00:00
|
|
|
"@babel/runtime": "^7.18.3",
|
2022-03-21 18:09:01 +00:00
|
|
|
"@fontsource/inter": "^4.5.1",
|
2023-01-06 19:17:20 +00:00
|
|
|
"@fontsource/roboto-mono": "^4.5.8",
|
2021-09-16 02:09:59 +00:00
|
|
|
"@gamestdio/websocket": "^0.3.2",
|
2023-01-02 16:09:56 +00:00
|
|
|
"@jest/globals": "^29.0.0",
|
2021-09-05 21:42:48 +00:00
|
|
|
"@lcdp/offline-plugin": "^5.1.0",
|
2022-12-30 02:16:06 +00:00
|
|
|
"@metamask/providers": "^10.0.0",
|
2022-06-22 10:47:20 +00:00
|
|
|
"@popperjs/core": "^2.11.5",
|
2022-11-22 14:55:31 +00:00
|
|
|
"@reach/combobox": "^0.18.0",
|
2022-11-11 19:41:32 +00:00
|
|
|
"@reach/menu-button": "^0.18.0",
|
|
|
|
"@reach/popover": "^0.18.0",
|
|
|
|
"@reach/portal": "^0.18.0",
|
|
|
|
"@reach/rect": "^0.18.0",
|
|
|
|
"@reach/tabs": "^0.18.0",
|
|
|
|
"@reach/tooltip": "^0.18.0",
|
2022-04-25 17:43:13 +00:00
|
|
|
"@reduxjs/toolkit": "^1.8.1",
|
2022-08-29 19:31:46 +00:00
|
|
|
"@sentry/browser": "^7.11.1",
|
|
|
|
"@sentry/react": "^7.11.1",
|
|
|
|
"@sentry/tracing": "^7.11.1",
|
2022-11-26 02:04:38 +00:00
|
|
|
"@tabler/icons": "^1.113.0",
|
2022-10-24 22:14:12 +00:00
|
|
|
"@tailwindcss/forms": "^0.5.3",
|
2022-11-17 13:03:15 +00:00
|
|
|
"@tailwindcss/line-clamp": "^0.4.2",
|
2022-10-24 22:14:12 +00:00
|
|
|
"@tailwindcss/typography": "^0.5.7",
|
2022-08-02 01:13:02 +00:00
|
|
|
"@tanstack/react-query": "^4.0.10",
|
2022-04-04 19:24:28 +00:00
|
|
|
"@testing-library/react": "^12.1.4",
|
2022-03-11 01:55:14 +00:00
|
|
|
"@types/escape-html": "^1.0.1",
|
2022-03-15 13:48:18 +00:00
|
|
|
"@types/http-link-header": "^1.0.3",
|
2023-01-02 16:09:56 +00:00
|
|
|
"@types/jest": "^29.0.0",
|
2022-12-08 15:30:48 +00:00
|
|
|
"@types/leaflet": "^1.8.0",
|
2022-03-15 13:48:18 +00:00
|
|
|
"@types/lodash": "^4.14.180",
|
2022-04-24 19:28:07 +00:00
|
|
|
"@types/object-assign": "^4.0.30",
|
2022-03-25 21:27:37 +00:00
|
|
|
"@types/qrcode.react": "^1.0.2",
|
2022-05-05 18:08:45 +00:00
|
|
|
"@types/react-color": "^3.0.6",
|
2022-06-22 10:47:20 +00:00
|
|
|
"@types/react-datepicker": "^4.4.2",
|
2022-03-24 13:17:32 +00:00
|
|
|
"@types/react-helmet": "^6.1.5",
|
2022-12-30 01:26:08 +00:00
|
|
|
"@types/react-motion": "^0.0.33",
|
2022-03-22 12:42:26 +00:00
|
|
|
"@types/react-router-dom": "^5.3.3",
|
2022-04-28 01:01:31 +00:00
|
|
|
"@types/react-sparklines": "^1.7.2",
|
2022-04-12 13:52:04 +00:00
|
|
|
"@types/react-swipeable-views": "^0.13.1",
|
2022-03-24 20:59:29 +00:00
|
|
|
"@types/react-toggle": "^4.0.3",
|
2022-04-04 15:51:32 +00:00
|
|
|
"@types/redux-mock-store": "^1.0.3",
|
2022-09-10 01:44:52 +00:00
|
|
|
"@types/seedrandom": "^3.0.2",
|
2022-03-26 19:23:29 +00:00
|
|
|
"@types/semver": "^7.3.9",
|
2023-01-05 18:32:41 +00:00
|
|
|
"@types/uuid": "^9.0.0",
|
2022-10-14 20:31:40 +00:00
|
|
|
"@types/webpack-assets-manifest": "^5.1.0",
|
|
|
|
"@types/webpack-bundle-analyzer": "^4.6.0",
|
|
|
|
"@types/webpack-deadcode-plugin": "^0.1.2",
|
2022-06-22 10:47:20 +00:00
|
|
|
"array-includes": "^3.1.5",
|
2022-03-19 18:20:00 +00:00
|
|
|
"autoprefixer": "^10.4.2",
|
2023-01-05 20:24:23 +00:00
|
|
|
"axios": "^1.2.2",
|
2022-06-21 17:51:05 +00:00
|
|
|
"axios-mock-adapter": "^1.21.1",
|
2022-06-01 18:22:49 +00:00
|
|
|
"babel-loader": "^8.2.5",
|
2020-03-28 00:35:00 +00:00
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2022-06-01 18:32:01 +00:00
|
|
|
"babel-plugin-preval": "^5.1.0",
|
2021-03-29 21:50:08 +00:00
|
|
|
"babel-plugin-react-intl": "^7.5.20",
|
2020-03-28 00:35:00 +00:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
2022-03-04 17:33:22 +00:00
|
|
|
"babel-plugin-transform-require-context": "^0.1.1",
|
2022-12-30 21:17:00 +00:00
|
|
|
"blurhash": "^2.0.0",
|
2021-09-21 01:49:24 +00:00
|
|
|
"bootstrap-icons": "^1.5.0",
|
2021-07-11 23:18:15 +00:00
|
|
|
"bowser": "^2.11.0",
|
2021-07-10 02:05:54 +00:00
|
|
|
"browserslist": "^4.16.6",
|
2021-09-06 00:59:46 +00:00
|
|
|
"cheerio": "^1.0.0-rc.10",
|
2022-08-31 09:35:06 +00:00
|
|
|
"clsx": "^1.2.1",
|
2022-10-14 20:31:40 +00:00
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
2021-07-10 01:47:35 +00:00
|
|
|
"core-js": "^3.15.2",
|
2022-10-25 04:16:15 +00:00
|
|
|
"cryptocurrency-icons": "^0.18.1",
|
2022-06-01 18:32:01 +00:00
|
|
|
"css-loader": "^6.7.1",
|
|
|
|
"cssnano": "^5.1.10",
|
2020-10-15 13:22:32 +00:00
|
|
|
"detect-passive-events": "^2.0.0",
|
2022-12-30 02:20:53 +00:00
|
|
|
"dotenv": "^16.0.0",
|
2022-12-30 01:26:34 +00:00
|
|
|
"emoji-datasource": "5.0.1",
|
2021-12-31 11:57:21 +00:00
|
|
|
"emoji-mart": "npm:emoji-mart-lazyload",
|
2020-03-28 00:35:00 +00:00
|
|
|
"es6-symbol": "^3.1.1",
|
|
|
|
"escape-html": "^1.0.3",
|
|
|
|
"exif-js": "^2.3.0",
|
2022-06-01 18:32:01 +00:00
|
|
|
"fork-ts-checker-webpack-plugin": "^7.2.11",
|
2022-01-06 16:45:10 +00:00
|
|
|
"history": "^4.10.1",
|
2021-09-05 21:42:48 +00:00
|
|
|
"html-webpack-harddisk-plugin": "^2.0.0",
|
2022-06-01 18:32:01 +00:00
|
|
|
"html-webpack-plugin": "^5.5.0",
|
2020-03-28 00:35:00 +00:00
|
|
|
"http-link-header": "^1.0.2",
|
2022-12-26 13:09:09 +00:00
|
|
|
"immutable": "^4.2.1",
|
2022-06-01 18:32:01 +00:00
|
|
|
"imports-loader": "^4.0.0",
|
2021-12-31 11:57:21 +00:00
|
|
|
"intersection-observer": "^0.12.0",
|
2020-03-28 00:35:00 +00:00
|
|
|
"intl": "^1.2.5",
|
2022-06-22 10:47:20 +00:00
|
|
|
"intl-messageformat": "9.13.0",
|
2020-10-08 00:00:03 +00:00
|
|
|
"intl-messageformat-parser": "^6.0.0",
|
2022-06-22 10:47:20 +00:00
|
|
|
"intl-pluralrules": "^1.3.1",
|
2020-03-28 00:35:00 +00:00
|
|
|
"is-nan": "^1.2.1",
|
2022-12-08 15:30:48 +00:00
|
|
|
"leaflet": "^1.8.0",
|
2022-07-13 22:37:40 +00:00
|
|
|
"libphonenumber-js": "^1.10.8",
|
2021-09-27 04:09:19 +00:00
|
|
|
"line-awesome": "^1.3.0",
|
2021-10-20 18:18:55 +00:00
|
|
|
"localforage": "^1.10.0",
|
2020-03-28 00:35:00 +00:00
|
|
|
"lodash": "^4.7.11",
|
|
|
|
"mark-loader": "^0.1.6",
|
2022-06-01 18:32:01 +00:00
|
|
|
"marky": "^1.2.4",
|
|
|
|
"mini-css-extract-plugin": "^2.6.0",
|
2020-03-28 00:35:00 +00:00
|
|
|
"object-assign": "^4.1.1",
|
|
|
|
"object.values": "^1.1.0",
|
2021-09-05 21:42:48 +00:00
|
|
|
"path-browserify": "^1.0.1",
|
2022-06-01 18:32:01 +00:00
|
|
|
"postcss": "^8.4.14",
|
|
|
|
"postcss-loader": "^7.0.0",
|
2021-09-05 21:42:48 +00:00
|
|
|
"process": "^0.11.10",
|
2020-03-28 00:35:00 +00:00
|
|
|
"prop-types": "^15.5.10",
|
2022-06-22 10:47:20 +00:00
|
|
|
"punycode": "^2.1.1",
|
|
|
|
"qrcode.react": "^3.0.2",
|
2022-05-28 18:15:23 +00:00
|
|
|
"react": "^17.0.2",
|
2022-06-22 10:47:20 +00:00
|
|
|
"react-color": "^2.19.3",
|
|
|
|
"react-datepicker": "^4.8.0",
|
2022-05-28 18:15:23 +00:00
|
|
|
"react-dom": "^17.0.2",
|
2022-06-22 10:47:20 +00:00
|
|
|
"react-helmet": "^6.1.0",
|
2022-12-20 15:47:02 +00:00
|
|
|
"react-hot-toast": "^2.4.0",
|
2020-03-28 00:35:00 +00:00
|
|
|
"react-hotkeys": "^1.1.4",
|
2022-06-22 10:47:20 +00:00
|
|
|
"react-immutable-proptypes": "^2.2.0",
|
|
|
|
"react-immutable-pure-component": "^2.2.2",
|
|
|
|
"react-inlinesvg": "^3.0.0",
|
2020-10-08 00:00:03 +00:00
|
|
|
"react-intl": "^5.0.0",
|
2020-03-28 00:35:00 +00:00
|
|
|
"react-motion": "^0.5.2",
|
2022-03-21 18:09:01 +00:00
|
|
|
"react-otp-input": "^2.4.0",
|
2020-10-06 01:32:20 +00:00
|
|
|
"react-overlays": "^0.9.0",
|
2022-06-22 10:47:20 +00:00
|
|
|
"react-popper": "^2.3.0",
|
2021-09-16 03:19:46 +00:00
|
|
|
"react-redux": "^7.2.5",
|
2022-03-18 01:17:28 +00:00
|
|
|
"react-router-dom": "^5.3.0",
|
2022-07-04 21:21:35 +00:00
|
|
|
"react-router-scroll-4": "^1.0.0-beta.2",
|
2022-11-11 19:41:32 +00:00
|
|
|
"react-simple-pull-to-refresh": "^1.3.3",
|
2020-03-28 00:35:00 +00:00
|
|
|
"react-sparklines": "^1.7.0",
|
2022-04-06 15:04:06 +00:00
|
|
|
"react-sticky-box": "^1.0.2",
|
2021-09-16 04:36:49 +00:00
|
|
|
"react-swipeable-views": "^0.14.0",
|
2022-06-22 10:47:20 +00:00
|
|
|
"react-textarea-autosize": "^8.3.4",
|
|
|
|
"react-toggle": "^4.1.2",
|
2022-11-11 19:41:32 +00:00
|
|
|
"react-virtuoso": "^3.1.3",
|
2021-09-16 02:32:41 +00:00
|
|
|
"redux": "^4.1.1",
|
2020-03-28 00:35:00 +00:00
|
|
|
"redux-immutable": "^4.0.0",
|
|
|
|
"redux-thunk": "^2.2.0",
|
|
|
|
"requestidlecallback": "^0.3.0",
|
|
|
|
"reselect": "^4.0.0",
|
2022-08-31 18:32:13 +00:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2020-03-28 00:35:00 +00:00
|
|
|
"sass": "^1.20.3",
|
2022-06-01 18:32:01 +00:00
|
|
|
"sass-loader": "^13.0.0",
|
2022-09-10 01:44:52 +00:00
|
|
|
"seedrandom": "^3.0.5",
|
2020-05-17 19:44:33 +00:00
|
|
|
"semver": "^7.3.2",
|
2020-03-28 00:35:00 +00:00
|
|
|
"stringz": "^2.0.0",
|
|
|
|
"substring-trie": "^1.0.2",
|
2021-09-05 21:42:48 +00:00
|
|
|
"terser-webpack-plugin": "^5.2.3",
|
2020-03-28 00:35:00 +00:00
|
|
|
"tiny-queue": "^0.2.1",
|
2022-06-01 18:32:01 +00:00
|
|
|
"ts-loader": "^9.3.0",
|
2022-10-14 20:31:40 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2021-09-06 00:59:46 +00:00
|
|
|
"tslib": "^2.3.1",
|
2022-06-30 02:09:22 +00:00
|
|
|
"twemoji": "https://github.com/twitter/twemoji#v14.0.2",
|
2022-02-27 00:13:35 +00:00
|
|
|
"typescript": "^4.4.4",
|
2021-09-05 21:42:48 +00:00
|
|
|
"util": "^0.12.4",
|
2023-01-05 18:32:41 +00:00
|
|
|
"uuid": "^9.0.0",
|
2022-06-01 18:22:49 +00:00
|
|
|
"webpack": "^5.72.1",
|
2022-06-01 18:32:01 +00:00
|
|
|
"webpack-assets-manifest": "^5.1.0",
|
|
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
2022-12-30 02:46:07 +00:00
|
|
|
"webpack-cli": "^5.0.0",
|
2022-04-14 20:22:37 +00:00
|
|
|
"webpack-deadcode-plugin": "^0.1.16",
|
2021-09-05 21:42:48 +00:00
|
|
|
"webpack-merge": "^5.8.0",
|
2021-08-28 12:09:29 +00:00
|
|
|
"wicg-inert": "^3.1.1"
|
2020-03-28 00:35:00 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-05 17:53:44 +00:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
2022-07-06 18:56:55 +00:00
|
|
|
"@jedmao/redux-mock-store": "^3.0.5",
|
2022-12-31 00:32:33 +00:00
|
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
|
2022-04-05 19:27:33 +00:00
|
|
|
"@testing-library/jest-dom": "^5.16.4",
|
2022-06-22 13:25:46 +00:00
|
|
|
"@testing-library/react-hooks": "^8.0.1",
|
2022-04-04 15:51:32 +00:00
|
|
|
"@testing-library/user-event": "^14.0.3",
|
2022-03-18 18:16:59 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
|
|
|
"@typescript-eslint/parser": "^5.15.0",
|
2023-01-02 16:09:56 +00:00
|
|
|
"babel-jest": "^29.0.0",
|
2022-04-05 19:32:41 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2022-06-17 23:21:45 +00:00
|
|
|
"danger": "^11.0.7",
|
2023-01-03 18:11:28 +00:00
|
|
|
"eslint": "^8.0.0",
|
2022-07-21 17:19:36 +00:00
|
|
|
"eslint-plugin-compat": "^4.0.2",
|
2022-01-10 22:01:24 +00:00
|
|
|
"eslint-plugin-import": "^2.25.4",
|
2022-11-02 23:42:30 +00:00
|
|
|
"eslint-plugin-jsdoc": "^39.6.2",
|
2021-09-06 00:59:46 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
2023-01-05 18:21:00 +00:00
|
|
|
"eslint-plugin-promise": "^6.0.0",
|
2021-09-06 00:59:46 +00:00
|
|
|
"eslint-plugin-react": "^7.25.1",
|
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2022-12-30 02:24:45 +00:00
|
|
|
"fake-indexeddb": "^4.0.0",
|
2023-01-05 18:22:40 +00:00
|
|
|
"husky": "^8.0.0",
|
2023-01-02 16:09:56 +00:00
|
|
|
"jest": "^29.0.0",
|
|
|
|
"jest-environment-jsdom": "^29.0.0",
|
2022-12-30 02:33:12 +00:00
|
|
|
"jest-junit": "^15.0.0",
|
2021-09-15 16:00:50 +00:00
|
|
|
"lint-staged": ">=10",
|
2020-03-28 00:35:00 +00:00
|
|
|
"raf": "^3.4.1",
|
|
|
|
"react-intl-translations-manager": "^5.0.3",
|
2022-12-31 00:32:33 +00:00
|
|
|
"react-refresh": "^0.14.0",
|
2023-01-05 18:46:09 +00:00
|
|
|
"stylelint": "^14.0.0",
|
2023-01-05 20:18:12 +00:00
|
|
|
"stylelint-config-standard-scss": "^6.1.0",
|
2022-10-24 22:14:12 +00:00
|
|
|
"tailwindcss": "^3.2.1",
|
2023-01-02 16:09:56 +00:00
|
|
|
"ts-jest": "^29.0.0",
|
2022-06-01 18:22:49 +00:00
|
|
|
"webpack-dev-server": "^4.9.1",
|
2022-12-29 05:21:13 +00:00
|
|
|
"yargs": "^17.6.2"
|
2022-12-30 16:13:59 +00:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"loader-utils": "^2.0.3"
|
2020-03-28 00:35:00 +00:00
|
|
|
}
|
2022-11-22 14:55:31 +00:00
|
|
|
}
|