Files
element-call/package.json
T

136 lines
5.2 KiB
JSON
Raw Normal View History

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": {
2026-04-17 11:07:31 +02:00
"dev": "pnpm dev:full",
2025-03-12 17:00:44 +00:00
"dev:full": "vite",
"dev:embedded": "vite --config vite-embedded.config.js",
2026-04-17 11:07:31 +02:00
"build": "pnpm build:full",
2025-03-12 17:00:44 +00:00
"build:full": "NODE_OPTIONS=--max-old-space-size=16384 vite build",
2026-04-17 11:07:31 +02:00
"build:full:production": "pnpm build:full",
"build:full:development": "pnpm build:full --mode development",
"build:embedded": "pnpm build:full --config vite-embedded.config.js",
"build:embedded:production": "pnpm build:embedded",
"build:embedded:development": "pnpm build:embedded --mode development",
"build:sdk:development": "pnpm build:sdk --mode development",
"build:sdk": "pnpm build:full --config vite-sdk.config.js",
"build:sdk:production": "pnpm build:sdk",
2021-12-23 12:45:00 -08:00
"serve": "vite preview",
2026-06-17 12:13:30 +02:00
"format": "oxfmt",
"format:check": "oxfmt --check; rc=$?; [[ $rc -ne 0 ]] && printf '\\033[46;30m INFO \\033[0m To fix, run: pnpm format\\n' >&2; exit $rc",
2026-06-18 16:09:26 +02:00
"lint": "pnpm lint:types && pnpm lint:oxlint && pnpm lint:knip",
"lint:oxlint": "oxlint src playwright",
"lint:oxlint-fix": "oxlint --fix src playwright",
"lint:knip": "knip",
2022-10-10 09:19:10 -04:00
"lint:types": "tsc",
"i18n": "npx i18next-cli extract",
"i18n:check": "npx i18next-cli extract --ci",
2024-02-15 17:39:37 -06:00
"test": "vitest",
"test:storybook": "vitest --project=storybook",
"test:unit": "vitest --project=unit",
"test:coverage": "vitest --coverage",
"backend": "docker-compose -f docker-compose-dev.yml up",
"backend-playwright": "docker-compose -f docker-compose-dev.yml -f docker-compose-playwright.yml up",
2025-03-13 14:44:04 +01:00
"test:playwright": "playwright test",
2026-04-17 11:07:31 +02:00
"test:playwright:open": "pnpm test:playwright --ui",
2026-04-21 16:06:51 +02:00
"links:on": "cp scripts/.pnpmfile.cjs .pnpmfile.cjs & pnpm install",
"links:off": "rm .pnpmfile.cjs & pnpm install",
2026-03-30 17:59:29 +02:00
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
2021-07-16 14:22:03 -07:00
},
"devDependencies": {
"@codecov/vite-plugin": "^1.3.0",
2024-11-14 12:23:09 +01:00
"@fontsource/inconsolata": "^5.1.0",
"@fontsource/inter": "^5.1.0",
2026-02-25 16:47:27 +00:00
"@formatjs/intl-durationformat": "^0.10.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",
2026-03-09 13:00:43 +01:00
"@livekit/track-processors": "^0.7.1",
2024-12-09 22:04:09 +00:00
"@mediapipe/tasks-vision": "^0.10.18",
2026-05-28 10:40:47 +02:00
"@playwright/test": "^1.60.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",
2026-08-04 12:49:53 +02:00
"@rolldown/plugin-babel": "^0.2.3",
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",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
2024-06-21 10:29:33 -04:00
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.0",
2023-09-27 17:34:41 -04:00
"@testing-library/user-event": "^14.5.1",
"@types/eslint": "^9.6.1",
"@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",
2025-11-05 18:49:21 +00:00
"@types/node": "^24.0.0",
"@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",
"@typescript-eslint/utils": "^8.61.0",
2022-04-07 14:22:36 -07:00
"@use-gesture/react": "^10.2.11",
2026-04-13 01:27:40 +00:00
"@vector-im/compound-design-tokens": "^10.0.0",
"@vector-im/compound-web": "^9.3.0",
2026-06-15 13:59:54 +02:00
"@vitejs/plugin-react": "^6.0.2",
"@vitest/browser-playwright": "^4.1.5",
2026-03-12 14:52:16 +01:00
"@vitest/coverage-v8": "^4.0.18",
2026-08-04 11:39:13 +00:00
"@vitest/ui": "4.1.10",
2026-08-04 12:49:53 +02:00
"babel-plugin-react-compiler": "^1.0.0",
2021-07-30 16:55:25 -07:00
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.3",
"eslint-plugin-element-call": "link:eslint",
"eslint-plugin-storybook": "^10.3.6",
2025-10-01 14:21:37 +02:00
"fetch-mock": "11.1.5",
2026-08-04 17:21:53 +00:00
"i18next": "^26.0.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-cli": "^1.61.0",
2025-01-13 12:05:26 +00:00
"jsdom": "^26.0.0",
2026-03-09 13:00:43 +01:00
"knip": "^5.86.0",
2026-04-13 10:02:54 +02:00
"livekit-client": "^2.18.1",
2024-11-14 12:18:43 +01:00
"lodash-es": "^4.17.21",
"loglevel": "^1.9.1",
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
"matrix-widget-api": "^1.16.1",
"node-stdlib-browser": "^1.3.1",
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",
2026-08-04 11:39:13 +00:00
"oxfmt": "^0.61.0",
2026-06-18 16:09:26 +02:00
"oxlint": "^1.70.0",
2026-08-04 11:39:13 +00:00
"oxlint-tsgolint": "^0.25.0",
2022-02-01 15:11:06 -08:00
"pako": "^2.0.4",
"postcss": "^8.4.41",
2024-08-04 00:40:54 +00:00
"postcss-preset-env": "^10.0.0",
2026-08-04 11:07:26 +00:00
"posthog-js": "1.408.2",
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",
2026-04-01 20:35:33 +00:00
"react-i18next": "^16.0.0 <16.7.0",
"react-router-dom": "^7.0.0",
2022-02-15 12:46:58 -08:00
"react-use-measure": "^2.1.1",
"rxjs": "^7.8.1",
2021-09-29 14:34:29 -07:00
"sass": "^1.42.1",
"storybook": "^10.3.6",
"typescript": "^5.8.3",
"unique-names-generator": "^4.6.0",
"uuid": "^14.0.0",
"vaul": "^1.0.0",
2026-04-06 21:16:47 +00:00
"vite": "^8.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",
2026-06-02 01:16:51 +00:00
"vite-plugin-node-polyfills": "^0.28.0",
"vite-plugin-node-stdlib-browser": "^0.2.1",
2024-02-01 17:11:59 -06:00
"vite-plugin-svgr": "^4.0.0",
2026-04-17 18:23:32 +02:00
"vite-plugin-wasm": "^3.6.0",
"vitest": "^4.1.5",
2024-09-05 16:23:44 -04:00
"vitest-axe": "^1.0.0-pre.3"
},
2026-06-15 12:29:20 +02:00
"packageManager": "pnpm@11.6.0+sha512.9a36518224080c6fe5165afdcfe79bfa118c29be703f3f462b1e32efe1e98e47e8750b148e08286250aad4113cc7993ca413c4e2cd447752708c2ee5751bc95f"
2022-09-13 16:39:14 +01:00
}