-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "opencast-editor",
"version": "0.1.0",
"type": "module",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource-variable/roboto-flex": "^5.2.8",
"@mui/material": "^9.0.1",
"@opencast/appkit": "^0.5.0",
"@reduxjs/toolkit": "^2.8.2",
"@rolldown/plugin-babel": "^0.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"deepmerge": "^4.3.1",
"emotion-normalize": "^11.0.1",
"i18next": "^26.2.0",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-chained-backend": "^5.0.4",
"i18next-resources-to-backend": "^1.2.1",
"lodash": "^4.17.21",
"luxon": "^3.6.1",
"react": "^19.2.6",
"react-beforeunload": "^2.7.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.2.6",
"react-draggable": "^4.5.0",
"react-hotkeys-hook": "^5.2.1",
"react-i18next": "^17.0.8",
"react-icons": "^5.5.0",
"react-indiana-drag-scroll": "^2.2.1",
"react-player": "^3.4.0",
"react-redux": "^9.2.0",
"react-resizable": "^4.0.1",
"react-select": "^5.10.1",
"react-virtualized-auto-sizer": "^2.0.3",
"react-window": "^2.2.7",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"smol-toml": "^1.4.0",
"standardized-audio-context": "^25.3.77",
"typescript": "^6.0.3",
"usehooks-ts": "^3.1.1",
"uuid": "^14.0.0",
"webvtt-parser": "^2.2.0"
},
"scripts": {
"start": "vite",
"build": "tsc && eslint . --max-warnings=0 && vite build",
"serve": "vite preview",
"test": "vitest",
"playtest": "npx playwright test --config=playwright.config.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@opencast/eslint-config-ts-react": "^0.3.0",
"@playwright/test": "^1.53.2",
"@types/lodash": "^4.17.19",
"@types/luxon": "^3.6.2",
"@types/node": "^25.9.1",
"@types/react-beforeunload": "^2.1.5",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9.30.0",
"jsdom": "^29.1.1",
"typescript-eslint": "^8.35.1",
"vite": "^8.0.13",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.1.6"
}
}