|
8 | 8 | "serve": "vite preview",
|
9 | 9 | "prettier:check": "prettier -c .",
|
10 | 10 | "prettier:format": "prettier -w .",
|
11 |
| - "lint": "yarn lint:types && yarn lint:eslint", |
| 11 | + "lint": "yarn lint:types && yarn lint:eslint && yarn lint:knip", |
12 | 12 | "lint:eslint": "eslint --max-warnings 0 src",
|
13 | 13 | "lint:eslint-fix": "eslint --max-warnings 0 src --fix",
|
| 14 | + "lint:knip": "knip", |
14 | 15 | "lint:types": "tsc",
|
15 |
| - "i18n": "node_modules/i18next-parser/bin/cli.js", |
16 |
| - "i18n:check": "node_modules/i18next-parser/bin/cli.js --fail-on-warnings --fail-on-update", |
| 16 | + "i18n": "i18next", |
| 17 | + "i18n:check": "i18next --fail-on-warnings --fail-on-update", |
17 | 18 | "test": "vitest",
|
18 | 19 | "test:coverage": "vitest --coverage",
|
19 | 20 | "backend": "docker-compose -f backend-docker-compose.yml up"
|
20 | 21 | },
|
21 |
| - "dependencies": { |
| 22 | + "devDependencies": { |
| 23 | + "@babel/core": "^7.16.5", |
| 24 | + "@babel/preset-env": "^7.22.20", |
| 25 | + "@babel/preset-react": "^7.22.15", |
| 26 | + "@babel/preset-typescript": "^7.23.0", |
22 | 27 | "@juggle/resize-observer": "^3.3.1",
|
23 | 28 | "@livekit/components-core": "^0.11.0",
|
24 | 29 | "@livekit/components-react": "^2.0.0",
|
25 | 30 | "@opentelemetry/api": "^1.4.0",
|
26 |
| - "@opentelemetry/context-zone": "^1.9.1", |
27 |
| - "@opentelemetry/exporter-jaeger": "^1.9.1", |
| 31 | + "@opentelemetry/core": "^1.25.1", |
28 | 32 | "@opentelemetry/exporter-trace-otlp-http": "^0.52.0",
|
29 |
| - "@opentelemetry/instrumentation-document-load": "^0.39.0", |
30 |
| - "@opentelemetry/instrumentation-user-interaction": "^0.39.0", |
| 33 | + "@opentelemetry/resources": "^1.25.1", |
| 34 | + "@opentelemetry/sdk-trace-base": "^1.25.1", |
31 | 35 | "@opentelemetry/sdk-trace-web": "^1.9.1",
|
| 36 | + "@opentelemetry/semantic-conventions": "^1.25.1", |
32 | 37 | "@radix-ui/react-dialog": "^1.0.4",
|
33 | 38 | "@radix-ui/react-slider": "^1.1.2",
|
34 | 39 | "@radix-ui/react-visually-hidden": "^1.0.3",
|
35 | 40 | "@react-aria/button": "^3.3.4",
|
36 | 41 | "@react-aria/focus": "^3.5.0",
|
| 42 | + "@react-aria/interactions": "^3.9.1", |
| 43 | + "@react-aria/listbox": "^3.5.1", |
37 | 44 | "@react-aria/menu": "^3.3.0",
|
38 | 45 | "@react-aria/overlays": "^3.7.3",
|
39 | 46 | "@react-aria/select": "^3.6.0",
|
|
42 | 49 | "@react-aria/utils": "^3.10.0",
|
43 | 50 | "@react-spring/web": "^9.4.4",
|
44 | 51 | "@react-stately/collections": "^3.3.4",
|
| 52 | + "@react-stately/list": "^3.5.1", |
| 53 | + "@react-stately/menu": "^3.3.1", |
45 | 54 | "@react-stately/select": "^3.1.3",
|
| 55 | + "@react-stately/tabs": "^3.1.1", |
46 | 56 | "@react-stately/tooltip": "^3.0.5",
|
47 | 57 | "@react-stately/tree": "^3.2.0",
|
48 |
| - "@sentry/react": "^8.0.0", |
49 |
| - "@sentry/tracing": "^7.0.0", |
50 |
| - "@types/lodash": "^4.14.199", |
51 |
| - "@use-gesture/react": "^10.2.11", |
52 |
| - "@vector-im/compound-design-tokens": "^1.0.0", |
53 |
| - "@vector-im/compound-web": "^6.0.0", |
54 |
| - "@vitejs/plugin-basic-ssl": "^1.0.1", |
55 |
| - "@vitejs/plugin-react": "^4.0.1", |
56 |
| - "buffer": "^6.0.3", |
57 |
| - "classnames": "^2.3.1", |
58 |
| - "events": "^3.3.0", |
59 |
| - "i18next": "^23.0.0", |
60 |
| - "i18next-browser-languagedetector": "^8.0.0", |
61 |
| - "i18next-http-backend": "^2.0.0", |
62 |
| - "livekit-client": "^2.0.2", |
63 |
| - "lodash": "^4.17.21", |
64 |
| - "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#467908703bc67fa3e23d978f5549e2709d4acf74", |
65 |
| - "matrix-widget-api": "^1.8.2", |
66 |
| - "normalize.css": "^8.0.1", |
67 |
| - "observable-hooks": "^4.2.3", |
68 |
| - "pako": "^2.0.4", |
69 |
| - "postcss-preset-env": "^10.0.0", |
70 |
| - "posthog-js": "^1.29.0", |
71 |
| - "react": "18", |
72 |
| - "react-dom": "18", |
73 |
| - "react-i18next": "^15.0.0", |
74 |
| - "react-router-dom": "^5.2.0", |
75 |
| - "react-use-clipboard": "^1.0.7", |
76 |
| - "react-use-measure": "^2.1.1", |
77 |
| - "rxjs": "^7.8.1", |
78 |
| - "sdp-transform": "^2.14.1", |
79 |
| - "tinyqueue": "^3.0.0", |
80 |
| - "unique-names-generator": "^4.6.0", |
81 |
| - "uuid": "10", |
82 |
| - "vaul": "^0.9.0" |
83 |
| - }, |
84 |
| - "devDependencies": { |
85 |
| - "@babel/core": "^7.16.5", |
86 |
| - "@babel/preset-env": "^7.22.20", |
87 |
| - "@babel/preset-react": "^7.22.15", |
88 |
| - "@babel/preset-typescript": "^7.23.0", |
89 |
| - "@react-spring/rafz": "^9.7.3", |
90 | 58 | "@react-types/dialog": "^3.5.5",
|
| 59 | + "@react-types/menu": "^3.6.1", |
| 60 | + "@react-types/overlays": "^3.6.1", |
| 61 | + "@react-types/shared": "^3.13.1", |
| 62 | + "@react-types/tabs": "^3.1.1", |
| 63 | + "@sentry/react": "^8.0.0", |
91 | 64 | "@sentry/vite-plugin": "^2.0.0",
|
92 | 65 | "@testing-library/dom": "^10.1.0",
|
93 | 66 | "@testing-library/react": "^16.0.0",
|
94 | 67 | "@testing-library/user-event": "^14.5.1",
|
95 | 68 | "@types/content-type": "^1.1.5",
|
96 |
| - "@types/dom-screen-wake-lock": "^1.0.1", |
97 |
| - "@types/dompurify": "^3.0.2", |
98 | 69 | "@types/grecaptcha": "^3.0.9",
|
| 70 | + "@types/lodash": "^4.14.199", |
99 | 71 | "@types/node": "^20.0.0",
|
100 | 72 | "@types/react-dom": "^18.3.0",
|
101 | 73 | "@types/react-router-dom": "^5.3.3",
|
102 |
| - "@types/request": "^2.48.8", |
103 | 74 | "@types/sdp-transform": "^2.4.5",
|
104 | 75 | "@types/uuid": "10",
|
105 | 76 | "@typescript-eslint/eslint-plugin": "^7.0.0",
|
106 | 77 | "@typescript-eslint/parser": "^7.0.0",
|
| 78 | + "@use-gesture/react": "^10.2.11", |
| 79 | + "@vector-im/compound-design-tokens": "^1.0.0", |
| 80 | + "@vector-im/compound-web": "^6.0.0", |
| 81 | + "@vitejs/plugin-basic-ssl": "^1.0.1", |
| 82 | + "@vitejs/plugin-react": "^4.0.1", |
107 | 83 | "@vitest/coverage-v8": "^2.0.5",
|
108 |
| - "babel-loader": "^9.0.0", |
109 | 84 | "babel-plugin-transform-vite-meta-env": "^1.0.3",
|
| 85 | + "classnames": "^2.3.1", |
110 | 86 | "eslint": "^8.14.0",
|
111 | 87 | "eslint-config-google": "^0.14.0",
|
112 | 88 | "eslint-config-prettier": "^9.0.0",
|
|
118 | 94 | "eslint-plugin-react-hooks": "^4.5.0",
|
119 | 95 | "eslint-plugin-unicorn": "^55.0.0",
|
120 | 96 | "global-jsdom": "^24.0.0",
|
| 97 | + "history": "^4.0.0", |
| 98 | + "i18next": "^23.0.0", |
| 99 | + "i18next-browser-languagedetector": "^8.0.0", |
| 100 | + "i18next-http-backend": "^2.0.0", |
121 | 101 | "i18next-parser": "^9.0.0",
|
122 | 102 | "jsdom": "^25.0.0",
|
| 103 | + "knip": "^5.27.2", |
| 104 | + "livekit-client": "^2.0.2", |
| 105 | + "lodash": "^4.17.21", |
| 106 | + "loglevel": "^1.9.1", |
| 107 | + "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#467908703bc67fa3e23d978f5549e2709d4acf74", |
| 108 | + "matrix-widget-api": "^1.8.2", |
| 109 | + "normalize.css": "^8.0.1", |
| 110 | + "observable-hooks": "^4.2.3", |
| 111 | + "pako": "^2.0.4", |
| 112 | + "postcss": "^8.4.41", |
| 113 | + "postcss-preset-env": "^10.0.0", |
| 114 | + "posthog-js": "^1.29.0", |
123 | 115 | "prettier": "^3.0.0",
|
| 116 | + "react": "18", |
| 117 | + "react-dom": "18", |
| 118 | + "react-i18next": "^15.0.0", |
| 119 | + "react-router-dom": "^5.2.0", |
| 120 | + "react-use-clipboard": "^1.0.7", |
| 121 | + "react-use-measure": "^2.1.1", |
| 122 | + "rxjs": "^7.8.1", |
124 | 123 | "sass": "^1.42.1",
|
125 | 124 | "typescript": "^5.1.6",
|
126 | 125 | "typescript-eslint-language-service": "^5.0.5",
|
| 126 | + "unique-names-generator": "^4.6.0", |
| 127 | + "vaul": "^0.9.0", |
127 | 128 | "vite": "^5.0.0",
|
128 | 129 | "vite-plugin-html-template": "^1.1.0",
|
129 | 130 | "vite-plugin-svgr": "^4.0.0",
|
|
0 commit comments