-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
79 lines (79 loc) · 2.64 KB
/
package.json
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
{
"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/elan-ev/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.25.2",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@emotion/babel-plugin": "^11.12.0",
"@emotion/react": "^11.13.3",
"@fontsource-variable/roboto-flex": "^5.0.16",
"@fontsource-variable/vazirmatn": "^5.0.21",
"@iarna/toml": "^2.2.5",
"@opencast/appkit": "^0.3.1",
"@svgr/webpack": "^8.1.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"deepmerge": "^4.3.1",
"fast-deep-equal": "^3.1.3",
"html-webpack-plugin": "^5.6.0",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"mustache": "^4.2.0",
"oscilloscope": "^1.3.0",
"react": "^18.3.1",
"react-beforeunload": "^2.6.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hotkeys-hook": "^4.5.0",
"react-i18next": "^15.0.1",
"react-icons": "^4.12.0",
"react-select": "^5.8.0",
"use-resize-observer": "^9.1.0",
"webm-duration-fix": "^1.0.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@opencast/eslint-config-ts-react": "^0.2.0",
"@stylistic/eslint-plugin-ts": "^2.7.2",
"@types/iarna__toml": "^2.0.5",
"@types/mustache": "^4.2.5",
"@types/node": "^22.5.1",
"@types/react": "^18.3.5",
"@types/react-beforeunload": "^2.1.5",
"@types/react-dom": "^18.3.0",
"@types/react-page-visibility": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-webpack-plugin": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack-dev-server": "^5.0.4"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults"
]
}