forked from elan-ev/opencast-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.48 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
{
"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.23.0",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/react": "^11.11.1",
"@fontsource-variable/roboto-flex": "^5.0.8",
"@iarna/toml": "^2.2.5",
"@opencast/appkit": "^0.2.1",
"@svgr/webpack": "^8.1.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"deepmerge": "^4.3.1",
"fast-deep-equal": "^3.1.3",
"html-webpack-plugin": "^5.5.3",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"mustache": "^4.2.0",
"oscilloscope": "^1.3.0",
"react": "^18.2.0",
"react-beforeunload": "^2.6.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"react-hotkeys-hook": "^4.4.1",
"react-i18next": "^13.2.2",
"react-icons": "^4.11.0",
"use-resize-observer": "^9.1.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@opencast/eslint-config-ts-react": "^0.1.0",
"@types/iarna__toml": "^2.0.3",
"@types/mustache": "^4.2.3",
"@types/node": "^20.8.0",
"@types/react": "^18.2.23",
"@types/react-beforeunload": "^2.1.2",
"@types/react-dom": "^18.2.8",
"@types/react-page-visibility": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack-dev-server": "^4.15.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults"
]
}