-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.86 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
80
81
82
83
84
{
"name": "@vidispine/admin-tool",
"version": "24.4.0",
"private": true,
"dependencies": {
"@devbookhq/splitter": "^1.3.2",
"@fontsource/open-sans": "4.5.2",
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"@vidispine/vdt-api": "24.3.0-pre.3",
"@vidispine/vdt-js": "24.3.0-pre.3",
"clsx": "1.1.1",
"codemirror": "5.65.9",
"d3-graphviz": "5.4.0",
"events": "^3.3.0",
"history": "5.1.0",
"immutability-helper": "3.1.1",
"jshint": "2.13.5",
"lodash.debounce": "4.0.8",
"lodash.startcase": "4.4.0",
"material-ui-chip-input": "1.1.0",
"moment": "2.29.4",
"react": "17.0.2",
"react-codemirror": "1.0.0",
"react-cookie": "4.1.1",
"react-dom": "17.0.2",
"react-json-view": "1.21.3",
"react-redux": "7.2.6",
"react-router-dom": "5.3.0",
"react-select": "5.2.1",
"redux": "4.1.2",
"redux-form": "^8.3.10",
"stringify-object": "^5.0.0",
"swagger-ui-react": "5.17.14"
},
"resolutions": {
"codemirror": "5.65.9",
"eslint": "7.11.0",
"axios": ">=0.28.1",
"d3-color": ">=3.1.0"
},
"overrides": {
"swagger-ui-react": {
"react": "$react",
"react-dom": "$react-dom",
"react-redux": "^8"
},
"@vidispine/vdt-api": {
"axios": ">=0.28.1"
}
},
"scripts": {
"start": "vite",
"build": "vite build",
"postbuild": "cp build/index.html build/404.html",
"gh-pages-clean": "gh-pages-clean",
"gh-pages": "gh-pages",
"predocker:buildx": "GENERATE_SOURCEMAP=false npm run build",
"predocker:buildx:push": "GENERATE_SOURCEMAP=false npm run build",
"docker:buildx": "docker buildx build --build-arg PUBLIC_URL --platform=linux/amd64,linux/arm64 -t \"${npm_package_name:1}:latest\" -t \"${npm_package_name:1}:${npm_package_version}\" .",
"docker:buildx:push": "docker buildx build --platform=linux/amd64,linux/arm64 --build-arg PUBLIC_URL -t \"${npm_package_name:1}:latest\" -t \"${npm_package_name:1}:${npm_package_version}\" --push .",
"docker:push": "docker push \"${npm_package_name:1}:${npm_package_version}\" && docker push \"${npm_package_name:1}:latest\"",
"docker:run": "docker run --name \"${npm_package_name/@vidispine\\//vidispine_}\" --rm -dti -e VIDISPINE_URL=$VIDISPINE_URL -e NGINX_RESOLVER=1.1.1.1 -p 80:80 \"${npm_package_name:1}:${npm_package_version}\"",
"docker:stop": "docker stop \"${npm_package_name/@vidispine\\//vidispine_}\""
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.4",
"eslint": "7.11.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "1.7.0",
"gh-pages": "6.1.1",
"sass": "^1.64.2",
"vite": "4.5.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}