2021-07-16 14:22:03 -07:00
|
|
|
{
|
2024-05-27 14:29:15 +02:00
|
|
|
"name": "element-call",
|
2021-07-16 14:22:03 -07:00
|
|
|
"version": "0.0.0",
|
2022-10-10 09:19:10 -04:00
|
|
|
"type": "module",
|
2021-07-16 14:22:03 -07:00
|
|
|
"scripts": {
|
2025-03-12 17:00:44 +00:00
|
|
|
"dev": "yarn dev:full",
|
|
|
|
|
"dev:full": "vite",
|
|
|
|
|
"dev:embedded": "vite --config vite-embedded.config.js",
|
|
|
|
|
"build": "yarn build:full",
|
|
|
|
|
"build:full": "NODE_OPTIONS=--max-old-space-size=16384 vite build",
|
2025-06-05 23:58:51 +02:00
|
|
|
"build:full:production": "yarn build:full",
|
2025-06-11 16:54:10 +02:00
|
|
|
"build:full:development": "yarn build:full --mode development",
|
2025-03-12 17:00:44 +00:00
|
|
|
"build:embedded": "yarn build:full --config vite-embedded.config.js",
|
2025-06-06 00:21:23 +02:00
|
|
|
"build:embedded:production": "yarn build:embedded",
|
2025-06-11 16:54:10 +02:00
|
|
|
"build:embedded:development": "yarn build:embedded --mode development",
|
2021-12-23 12:45:00 -08:00
|
|
|
"serve": "vite preview",
|
2022-12-09 14:34:25 -05:00
|
|
|
"prettier:check": "prettier -c .",
|
|
|
|
|
"prettier:format": "prettier -w .",
|
2024-08-27 20:06:57 -04:00
|
|
|
"lint": "yarn lint:types && yarn lint:eslint && yarn lint:knip",
|
2025-03-17 14:59:27 +01:00
|
|
|
"lint:eslint": "eslint --max-warnings 0 src playwright",
|
|
|
|
|
"lint:eslint-fix": "eslint --max-warnings 0 src playwright --fix",
|
2024-08-27 20:06:57 -04:00
|
|
|
"lint:knip": "knip",
|
2022-10-10 09:19:10 -04:00
|
|
|
"lint:types": "tsc",
|
2024-08-27 20:06:57 -04:00
|
|
|
"i18n": "i18next",
|
|
|
|
|
"i18n:check": "i18next --fail-on-warnings --fail-on-update",
|
2024-02-15 17:39:37 -06:00
|
|
|
"test": "vitest",
|
2024-08-27 09:45:39 -04:00
|
|
|
"test:coverage": "vitest --coverage",
|
2025-03-13 14:44:04 +01:00
|
|
|
"backend": "docker-compose -f dev-backend-docker-compose.yml up",
|
2025-05-27 17:53:06 +02:00
|
|
|
"backend-playwright": "docker-compose -f playwright-backend-docker-compose.yml -f playwright-backend-docker-compose.override.yml up",
|
2025-03-13 14:44:04 +01:00
|
|
|
"test:playwright": "playwright test",
|
2025-04-04 12:35:21 +02:00
|
|
|
"test:playwright:open": "yarn test:playwright --ui",
|
|
|
|
|
"links:enable": "mv .links.disabled.yaml .links.yaml & touch .links.yaml",
|
|
|
|
|
"links:disable": "mv .links.yaml .links.disabled.yaml"
|
2021-07-16 14:22:03 -07:00
|
|
|
},
|
2024-08-27 20:06:57 -04:00
|
|
|
"devDependencies": {
|
|
|
|
|
"@babel/core": "^7.16.5",
|
|
|
|
|
"@babel/preset-env": "^7.22.20",
|
|
|
|
|
"@babel/preset-react": "^7.22.15",
|
|
|
|
|
"@babel/preset-typescript": "^7.23.0",
|
2024-11-14 11:07:21 +01:00
|
|
|
"@codecov/vite-plugin": "^1.3.0",
|
2024-11-14 12:23:09 +01:00
|
|
|
"@fontsource/inconsolata": "^5.1.0",
|
|
|
|
|
"@fontsource/inter": "^5.1.0",
|
2024-12-10 15:15:57 +00:00
|
|
|
"@formatjs/intl-durationformat": "^0.7.0",
|
2024-11-08 17:36:40 +00:00
|
|
|
"@formatjs/intl-segmenter": "^11.7.3",
|
2025-02-05 16:14:04 +00:00
|
|
|
"@livekit/components-core": "^0.12.0",
|
2024-02-21 08:56:04 -05:00
|
|
|
"@livekit/components-react": "^2.0.0",
|
2025-05-13 09:38:43 +02:00
|
|
|
"@livekit/protocol": "^1.38.0",
|
2025-04-22 18:00:41 +02:00
|
|
|
"@livekit/track-processors": "^0.5.5",
|
2024-12-09 22:04:09 +00:00
|
|
|
"@mediapipe/tasks-vision": "^0.10.18",
|
2023-03-10 10:33:54 +01:00
|
|
|
"@opentelemetry/api": "^1.4.0",
|
2025-05-28 16:50:03 -04:00
|
|
|
"@opentelemetry/core": "^2.0.0",
|
2025-08-01 11:07:01 +02:00
|
|
|
"@opentelemetry/exporter-trace-otlp-http": "^0.203.0",
|
2025-05-28 16:50:03 -04:00
|
|
|
"@opentelemetry/resources": "^2.0.0",
|
|
|
|
|
"@opentelemetry/sdk-trace-base": "^2.0.0",
|
|
|
|
|
"@opentelemetry/sdk-trace-web": "^2.0.0",
|
2024-08-27 20:06:57 -04:00
|
|
|
"@opentelemetry/semantic-conventions": "^1.25.1",
|
2025-04-29 12:41:23 +02:00
|
|
|
"@playwright/test": "^1.52.0",
|
2023-09-17 14:25:32 -04:00
|
|
|
"@radix-ui/react-dialog": "^1.0.4",
|
2023-12-01 17:43:09 -05:00
|
|
|
"@radix-ui/react-slider": "^1.1.2",
|
2023-09-17 14:25:32 -04:00
|
|
|
"@radix-ui/react-visually-hidden": "^1.0.3",
|
2025-06-09 11:47:47 -04:00
|
|
|
"@react-spring/web": "^10.0.0",
|
2024-06-20 21:46:07 +00:00
|
|
|
"@sentry/react": "^8.0.0",
|
2025-01-15 10:37:27 +00:00
|
|
|
"@sentry/vite-plugin": "^3.0.0",
|
2025-01-28 09:46:36 +01:00
|
|
|
"@stylistic/eslint-plugin": "^3.0.0",
|
2024-06-21 10:29:33 -04:00
|
|
|
"@testing-library/dom": "^10.1.0",
|
2024-11-25 20:22:02 +00:00
|
|
|
"@testing-library/jest-dom": "^6.6.3",
|
2024-06-20 21:46:20 +00:00
|
|
|
"@testing-library/react": "^16.0.0",
|
2023-09-27 17:34:41 -04:00
|
|
|
"@testing-library/user-event": "^14.5.1",
|
2023-07-21 00:51:07 -04:00
|
|
|
"@types/content-type": "^1.1.5",
|
2025-05-09 10:48:09 -04:00
|
|
|
"@types/dom-mediacapture-transform": "^0.1.11",
|
2024-08-27 09:45:39 -04:00
|
|
|
"@types/grecaptcha": "^3.0.9",
|
2024-08-30 15:40:09 +02:00
|
|
|
"@types/jsdom": "^21.1.7",
|
2024-11-14 12:18:43 +01:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-12-03 10:07:31 +01:00
|
|
|
"@types/node": "^22.0.0",
|
2024-11-14 14:00:01 +01:00
|
|
|
"@types/pako": "^2.0.3",
|
2024-09-02 09:10:42 +02:00
|
|
|
"@types/qrcode": "^1.5.5",
|
2025-06-03 13:28:48 +00:00
|
|
|
"@types/react": "^19.0.0",
|
|
|
|
|
"@types/react-dom": "^19.0.0",
|
2023-07-21 00:51:07 -04:00
|
|
|
"@types/sdp-transform": "^2.4.5",
|
2024-06-21 10:07:33 +00:00
|
|
|
"@types/uuid": "10",
|
2025-04-28 17:44:22 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.31.0",
|
|
|
|
|
"@typescript-eslint/parser": "^8.31.0",
|
2022-04-07 14:22:36 -07:00
|
|
|
"@use-gesture/react": "^10.2.11",
|
2025-08-05 11:34:24 +02:00
|
|
|
"@vector-im/compound-design-tokens": "^6.0.0",
|
2025-06-23 00:39:22 +00:00
|
|
|
"@vector-im/compound-web": "^8.0.0",
|
2023-06-30 18:21:18 -04:00
|
|
|
"@vitejs/plugin-react": "^4.0.1",
|
2025-01-16 15:31:49 +00:00
|
|
|
"@vitest/coverage-v8": "^3.0.0",
|
2022-10-26 10:47:44 +02:00
|
|
|
"babel-plugin-transform-vite-meta-env": "^1.0.3",
|
2021-07-30 16:55:25 -07:00
|
|
|
"classnames": "^2.3.1",
|
2025-06-09 11:53:58 -04:00
|
|
|
"copy-to-clipboard": "^3.3.3",
|
2022-05-03 15:32:16 +01:00
|
|
|
"eslint": "^8.14.0",
|
2022-05-06 11:32:09 +01:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2025-01-13 15:52:11 +01:00
|
|
|
"eslint-config-prettier": "^10.0.0",
|
2023-09-22 18:05:13 -04:00
|
|
|
"eslint-plugin-deprecate": "^0.8.2",
|
2022-05-06 11:32:09 +01:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2022-05-03 15:32:16 +01:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
2025-05-28 16:25:21 -04:00
|
|
|
"eslint-plugin-matrix-org": "2.1.0",
|
2022-05-03 15:32:16 +01:00
|
|
|
"eslint-plugin-react": "^7.29.4",
|
2024-10-11 15:35:19 +00:00
|
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
2024-11-06 14:33:06 +00:00
|
|
|
"eslint-plugin-rxjs": "^5.0.3",
|
2024-10-30 14:27:38 +00:00
|
|
|
"eslint-plugin-unicorn": "^56.0.0",
|
2025-01-13 12:01:51 +00:00
|
|
|
"global-jsdom": "^26.0.0",
|
2025-01-06 17:14:17 +00:00
|
|
|
"i18next": "^24.0.0",
|
2024-06-21 08:46:24 +00:00
|
|
|
"i18next-browser-languagedetector": "^8.0.0",
|
2025-01-06 17:14:17 +00:00
|
|
|
"i18next-parser": "^9.1.0",
|
2025-01-13 12:05:26 +00:00
|
|
|
"jsdom": "^26.0.0",
|
2024-08-27 20:06:57 -04:00
|
|
|
"knip": "^5.27.2",
|
2025-05-16 19:12:18 +02:00
|
|
|
"livekit-client": "^2.13.0",
|
2024-11-14 12:18:43 +01:00
|
|
|
"lodash-es": "^4.17.21",
|
2024-08-27 20:06:57 -04:00
|
|
|
"loglevel": "^1.9.1",
|
2025-09-24 13:53:39 -04:00
|
|
|
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#head=voip-team/multi-SFU",
|
2025-05-05 17:29:46 +02:00
|
|
|
"matrix-widget-api": "^1.13.0",
|
2022-01-04 16:00:13 -08:00
|
|
|
"normalize.css": "^8.0.1",
|
2024-05-08 15:29:39 -04:00
|
|
|
"observable-hooks": "^4.2.3",
|
2022-02-01 15:11:06 -08:00
|
|
|
"pako": "^2.0.4",
|
2024-08-27 20:06:57 -04:00
|
|
|
"postcss": "^8.4.41",
|
2024-08-04 00:40:54 +00:00
|
|
|
"postcss-preset-env": "^10.0.0",
|
2024-09-27 16:02:12 -04:00
|
|
|
"posthog-js": "1.160.3",
|
2023-10-11 14:38:05 +00:00
|
|
|
"prettier": "^3.0.0",
|
2024-09-02 08:40:15 +02:00
|
|
|
"qrcode": "^1.5.4",
|
2025-06-03 13:28:48 +00:00
|
|
|
"react": "19",
|
|
|
|
|
"react-dom": "19",
|
2024-07-17 16:51:55 +00:00
|
|
|
"react-i18next": "^15.0.0",
|
2025-01-08 16:42:07 +00:00
|
|
|
"react-router-dom": "^7.0.0",
|
2022-02-15 12:46:58 -08:00
|
|
|
"react-use-measure": "^2.1.1",
|
2023-11-30 22:59:19 -05:00
|
|
|
"rxjs": "^7.8.1",
|
2021-09-29 14:34:29 -07:00
|
|
|
"sass": "^1.42.1",
|
2025-04-28 17:44:22 +02:00
|
|
|
"typescript": "^5.8.3",
|
2023-09-22 18:05:13 -04:00
|
|
|
"typescript-eslint-language-service": "^5.0.5",
|
2024-08-27 20:06:57 -04:00
|
|
|
"unique-names-generator": "^4.6.0",
|
2024-11-14 14:11:17 +01:00
|
|
|
"vaul": "^1.0.0",
|
2025-09-10 12:31:03 +02:00
|
|
|
"vite": "^7.0.0",
|
2025-05-28 07:09:25 +00:00
|
|
|
"vite-plugin-generate-file": "^0.3.0",
|
2025-03-12 17:00:44 +00:00
|
|
|
"vite-plugin-html": "^3.2.2",
|
2024-02-01 17:11:59 -06:00
|
|
|
"vite-plugin-svgr": "^4.0.0",
|
2025-01-16 15:31:49 +00:00
|
|
|
"vitest": "^3.0.0",
|
2024-09-05 16:23:44 -04:00
|
|
|
"vitest-axe": "^1.0.0-pre.3"
|
2025-02-05 11:11:13 +01:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
2025-03-04 00:10:17 -05:00
|
|
|
"@livekit/components-core/rxjs": "^7.8.1",
|
2025-05-05 17:29:46 +02:00
|
|
|
"@livekit/track-processors/@mediapipe/tasks-vision": "^0.10.18"
|
2025-03-14 02:13:48 -04:00
|
|
|
},
|
|
|
|
|
"packageManager": "yarn@4.7.0"
|
2022-09-13 16:39:14 +01:00
|
|
|
}
|