soapbox/package.json

227 lines
7.4 KiB
JSON
Raw Normal View History

2020-03-27 21:59:38 +01:00
{
"name": "soapbox",
2022-08-29 18:20:56 +02:00
"displayName": "Soapbox",
2023-02-15 19:57:36 +01:00
"version": "3.2.0",
2023-09-13 19:04:17 +02:00
"type": "module",
2022-08-29 18:20:56 +02:00
"description": "Soapbox frontend for the Fediverse.",
"homepage": "https://soapbox.pub/",
"repository": {
2020-05-17 21:44:33 +02:00
"type": "git",
"url": "https://gitlab.com/soapbox-pub/soapbox"
},
2020-05-17 21:44:33 +02:00
"keywords": [
"fediverse",
"pleroma"
],
"bugs": {
"url": "https://gitlab.com/soapbox-pub/soapbox/-/issues"
},
2020-03-27 21:59:38 +01:00
"scripts": {
2023-09-13 19:04:17 +02:00
"start": "npx vite serve",
2020-04-14 23:50:42 +02:00
"dev": "${npm_execpath} run start",
"build": "npx vite build --emptyOutDir",
"preview": "npx vite preview",
2022-12-30 17:10:13 +01:00
"audit:fix": "npx yarn-audit-fix",
2022-12-29 05:59:39 +01:00
"manage:translations": "npx ts-node ./scripts/translationRunner.ts",
"i18n": "rm -rf build tmp && npx cross-env NODE_ENV=production ${npm_execpath} run build && ${npm_execpath} manage:translations en",
"test": "npx vitest",
"test:coverage": "${npm_execpath} run test --coverage",
2022-04-04 17:50:14 +02: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,.cjs,.mjs,.ts,.tsx . --cache",
"lint:sass": "npx stylelint src/styles/**/*.scss",
2023-07-20 20:52:39 +02:00
"prepare": "husky install"
2020-03-27 21:59:38 +01:00
},
2020-03-28 01:35:00 +01:00
"license": "AGPL-3.0-or-later",
"browserslist": [
2023-09-13 23:52:23 +02:00
"> 0.5%",
2020-03-28 01:35:00 +01:00
"last 2 versions",
"not dead"
],
"dependencies": {
2023-09-16 02:10:59 +02:00
"@akryum/flexsearch-es": "^0.7.32",
2023-09-13 23:35:41 +02:00
"@babel/plugin-transform-react-inline-elements": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@emoji-mart/data": "^1.1.2",
"@floating-ui/react": "^0.26.0",
"@fontsource/inter": "^5.0.0",
"@fontsource/roboto-mono": "^5.0.0",
"@fontsource/tajawal": "^5.0.8",
"@gamestdio/websocket": "^0.3.2",
2023-09-23 23:28:44 +02:00
"@lexical/clipboard": "^0.12.2",
"@lexical/hashtag": "^0.12.2",
"@lexical/link": "^0.12.2",
"@lexical/react": "^0.12.2",
"@lexical/selection": "^0.12.2",
"@lexical/utils": "^0.12.2",
"@popperjs/core": "^2.11.5",
2022-11-22 15:55:31 +01:00
"@reach/combobox": "^0.18.0",
"@reach/menu-button": "^0.18.0",
"@reach/popover": "^0.18.0",
"@reach/rect": "^0.18.0",
"@reach/tabs": "^0.18.0",
2022-04-25 19:43:13 +02:00
"@reduxjs/toolkit": "^1.8.1",
2023-02-13 21:28:52 +01:00
"@sentry/browser": "^7.37.2",
"@sentry/react": "^7.37.2",
"@sentry/tracing": "^7.37.2",
2023-02-15 20:09:14 +01:00
"@tabler/icons": "^2.0.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
2022-10-25 00:14:12 +02:00
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
2022-08-02 03:13:02 +02:00
"@tanstack/react-query": "^4.0.10",
2022-03-11 02:55:14 +01:00
"@types/escape-html": "^1.0.1",
2022-03-15 14:48:18 +01:00
"@types/http-link-header": "^1.0.3",
"@types/leaflet": "^1.8.0",
2022-03-15 14:48:18 +01:00
"@types/lodash": "^4.14.180",
2022-04-24 21:28:07 +02:00
"@types/object-assign": "^4.0.30",
2023-09-13 19:04:17 +02:00
"@types/path-browserify": "^1.0.0",
2023-01-11 00:03:15 +01:00
"@types/react": "^18.0.26",
"@types/react-color": "^3.0.6",
"@types/react-datepicker": "^4.4.2",
2023-01-11 00:03:15 +01:00
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.5",
"@types/react-motion": "^0.0.35",
2022-03-22 13:42:26 +01:00
"@types/react-router-dom": "^5.3.3",
2022-04-28 03:01:31 +02:00
"@types/react-sparklines": "^1.7.2",
2022-04-12 15:52:04 +02:00
"@types/react-swipeable-views": "^0.13.1",
"@types/redux-mock-store": "^1.0.3",
"@types/semver": "^7.3.9",
2023-01-05 19:32:41 +01:00
"@types/uuid": "^9.0.0",
2023-09-13 19:04:17 +02:00
"@vitejs/plugin-react": "^4.0.4",
2023-09-13 20:39:57 +02:00
"autoprefixer": "^10.4.15",
"axios": "^1.2.2",
2023-09-17 01:46:55 +02:00
"axios-mock-adapter": "^1.22.0",
2022-06-01 20:32:01 +02:00
"babel-plugin-preval": "^5.1.0",
"babel-plugin-react-intl": "^7.5.20",
"blurhash": "^2.0.0",
2021-09-21 03:49:24 +02:00
"bootstrap-icons": "^1.5.0",
"bowser": "^2.11.0",
2021-07-10 04:05:54 +02:00
"browserslist": "^4.16.6",
"clsx": "^2.0.0",
2023-01-23 22:22:10 +01:00
"core-js": "^3.27.2",
"cryptocurrency-icons": "^0.18.1",
2023-09-20 20:08:10 +02:00
"cssnano": "^6.0.0",
"detect-passive-events": "^2.0.0",
2022-12-30 03:20:53 +01:00
"dotenv": "^16.0.0",
"emoji-datasource": "14.0.0",
"emoji-mart": "^5.5.2",
2020-03-28 01:35:00 +01:00
"escape-html": "^1.0.3",
2023-09-17 03:14:24 +02:00
"exifr": "^7.1.3",
2022-07-05 08:37:07 +02:00
"graphemesplit": "^2.4.4",
2020-03-28 01:35:00 +01:00
"http-link-header": "^1.0.2",
"immer": "^10.0.0",
"immutable": "^4.2.1",
"intersection-observer": "^0.12.2",
"intl-messageformat": "9.13.0",
2020-10-08 02:00:03 +02:00
"intl-messageformat-parser": "^6.0.0",
"intl-pluralrules": "^2.0.0",
"leaflet": "^1.8.0",
2023-09-23 23:28:44 +02:00
"lexical": "^0.12.2",
2021-09-27 06:09:19 +02:00
"line-awesome": "^1.3.0",
"localforage": "^1.10.0",
2020-03-28 01:35:00 +01:00
"lodash": "^4.7.11",
2022-06-01 20:32:01 +02:00
"mini-css-extract-plugin": "^2.6.0",
"nostr-machina": "^0.1.0",
2023-08-27 06:24:18 +02:00
"nostr-tools": "^1.14.2",
2021-09-05 23:42:48 +02:00
"path-browserify": "^1.0.1",
2023-09-13 20:39:57 +02:00
"postcss": "^8.4.29",
2021-09-05 23:42:48 +02:00
"process": "^0.11.10",
"punycode": "^2.1.1",
"qrcode.react": "^3.1.0",
2023-01-05 19:34:21 +01:00
"react": "^18.0.0",
"react-color": "^2.19.3",
"react-datepicker": "^4.8.0",
2023-01-05 19:34:21 +01:00
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
2022-12-20 16:47:02 +01:00
"react-hot-toast": "^2.4.0",
2020-03-28 01:35:00 +01:00
"react-hotkeys": "^1.1.4",
"react-immutable-pure-component": "^2.2.2",
"react-inlinesvg": "^4.0.0",
2020-10-08 02:00:03 +02:00
"react-intl": "^5.0.0",
2020-03-28 01:35:00 +01:00
"react-motion": "^0.5.2",
"react-overlays": "^0.9.0",
"react-popper": "^2.3.0",
2023-01-05 21:15:54 +01:00
"react-redux": "^8.0.0",
2022-03-18 02:17:28 +01:00
"react-router-dom": "^5.3.0",
"react-router-dom-v5-compat": "^6.6.2",
"react-router-scroll-4": "^1.0.0-beta.2",
"react-simple-pull-to-refresh": "^1.3.3",
2020-03-28 01:35:00 +01:00
"react-sparklines": "^1.7.0",
"react-sticky-box": "^2.0.0",
"react-swipeable-views": "^0.14.0",
"react-textarea-autosize": "^8.3.4",
"react-virtuoso": "^4.3.11",
2021-09-16 04:32:41 +02:00
"redux": "^4.1.1",
2020-03-28 01:35:00 +01:00
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.2.0",
"reselect": "^4.0.0",
2022-08-31 20:32:13 +02:00
"resize-observer-polyfill": "^1.5.1",
2023-09-13 20:39:57 +02:00
"sass": "^1.66.1",
"semver": "^7.3.8",
2020-03-28 01:35:00 +01:00
"stringz": "^2.0.0",
"substring-trie": "^1.0.2",
"tiny-queue": "^0.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
2022-06-30 04:09:22 +02:00
"twemoji": "https://github.com/twitter/twemoji#v14.0.2",
"type-fest": "^4.0.0",
2023-06-13 23:25:39 +02:00
"typescript": "^5.1.3",
2021-09-05 23:42:48 +02:00
"util": "^0.12.4",
2023-01-05 19:32:41 +01:00
"uuid": "^9.0.0",
2023-09-13 19:04:17 +02:00
"vite": "^4.4.9",
"vite-plugin-compile-time": "^0.2.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-require": "^1.1.10",
"vite-plugin-static-copy": "^0.17.0",
2023-03-10 18:35:18 +01:00
"wicg-inert": "^3.1.1",
"zod": "^3.21.4"
2020-03-28 01:35:00 +01:00
},
"devDependencies": {
2023-01-08 23:34:50 +01:00
"@gitbeaker/node": "^35.8.0",
2022-07-06 20:56:55 +02:00
"@jedmao/redux-mock-store": "^3.0.5",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
2022-06-22 15:25:46 +02:00
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
2023-09-21 01:50:17 +02:00
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
2023-02-03 02:27:16 +01:00
"babel-plugin-transform-require-context": "^0.1.1",
"cross-env": "^7.0.3",
2023-09-16 19:16:17 +02:00
"eslint": "^8.49.0",
"eslint-import-resolver-typescript": "^3.6.0",
2023-09-16 19:16:17 +02:00
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-promise": "^6.0.0",
2023-09-16 19:16:17 +02:00
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
2022-12-30 03:24:45 +01:00
"fake-indexeddb": "^4.0.0",
2023-01-05 19:22:40 +01:00
"husky": "^8.0.0",
2023-09-16 02:18:17 +02:00
"jsdom": "^22.1.0",
"lint-staged": ">=10",
2020-03-28 01:35:00 +01:00
"react-intl-translations-manager": "^5.0.3",
"react-refresh": "^0.14.0",
"rollup-plugin-visualizer": "^5.9.2",
2023-09-16 14:17:00 +02:00
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
2023-09-13 20:39:57 +02:00
"tailwindcss": "^3.3.3",
2023-09-21 01:50:17 +02:00
"vite-plugin-checker": "^0.6.2",
2023-09-15 21:37:09 +02:00
"vite-plugin-pwa": "^0.16.5",
"vitest": "^0.34.4",
2022-12-29 06:21:13 +01:00
"yargs": "^17.6.2"
2022-12-30 17:13:59 +01:00
},
"resolutions": {
2023-01-11 00:03:15 +01:00
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
2023-01-11 00:22:19 +01:00
"glob-parent": "^6.0.1",
2023-01-10 20:24:45 +01:00
"jsonwebtoken": "^9.0.0",
2022-12-30 17:13:59 +01:00
"loader-utils": "^2.0.3"
2020-03-28 01:35:00 +01:00
}
2020-03-27 21:59:38 +01:00
}