-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.56 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.56 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
{
"name": "opencast-studio",
"version": "2.0.0",
"private": true,
"description": "Web-based recording studio for Opencast",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/opencast/studio.git"
},
"homepage": "https://studio.opencast.org",
"scripts": {
"start": "COMMIT_SHA=$(git rev-parse --short HEAD) BUILD_DATE=$(date -u '+%Y-%m-%d') webpack serve --open --mode=development",
"build:dev": "COMMIT_SHA=$(git rev-parse --short HEAD) BUILD_DATE=$(date -u '+%Y-%m-%d') webpack --progress --mode=development",
"build:release": "COMMIT_SHA=$(git rev-parse --short HEAD) BUILD_DATE=$(date -u '+%Y-%m-%d') webpack --progress --mode=production",
"typecheck": "tsc --skipLibCheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/react": "^11.14.0",
"@fontsource-variable/roboto-flex": "^5.2.8",
"@fontsource-variable/vazirmatn": "^5.2.8",
"@iarna/toml": "^2.2.5",
"@opencast/appkit": "^0.5.0",
"@svgr/webpack": "^8.1.0",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.1",
"deepmerge": "^4.3.1",
"fast-deep-equal": "^3.1.3",
"focus-trap-react": "^11.0.4",
"html-webpack-plugin": "^5.6.6",
"i18next": "^25.8.13",
"i18next-browser-languagedetector": "^8.2.1",
"is-plain-object": "^5.0.0",
"mustache": "^4.2.0",
"oscilloscope": "^1.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"react-hotkeys-hook": "^5.2.4",
"react-i18next": "^16.5.4",
"react-icons": "^5.5.0",
"react-merge-refs": "^3.0.2",
"react-select": "^5.10.2",
"webm-duration-fix": "^1.0.4",
"webpack": "^5.105.3",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@opencast/eslint-config-ts-react": "^0.3.0",
"@stylistic/eslint-plugin-ts": "4.4",
"@types/iarna__toml": "^2.0.5",
"@types/mustache": "^4.2.6",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-beforeunload": "^2.1.5",
"@types/react-dom": "^19.2.3",
"@types/react-page-visibility": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"eslint": "^9.39.1",
"eslint-webpack-plugin": "^5.0.3",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"webpack-dev-server": "^5.2.3"
},
"browserslist": [
"defaults"
]
}