-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-workbench",
"version": "2.1.2",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@material-ui/core": "^4.11.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/bootstrap": "^5.0.16",
"@types/jest": "^26.0.15",
"@types/jwt-decode": "^3.1.0",
"@types/node": "18",
"@types/react": "^18.0.28",
"@types/react-bootstrap": "^0.32.25",
"@types/react-dom": "^18.0.11",
"@types/react-gravatar": "^2.6.8",
"@types/react-redux": "^7.1.25",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.7",
"@types/redux": "^3.6.0",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "^5.1.14",
"@types/styled-theming": "^2.2.5",
"@types/swagger-ui-react": "^3.35.1",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"bootstrap": "^5.0.1",
"btoa": "^1.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "~7.0.0",
"eslint-plugin-prettier": "^3.4.0",
"jwt-decode": "^3.1.2",
"openapi-typescript": "^4.0.1",
"openapi-typescript-codegen": "^0.9.3",
"prettier": "^2.3.1",
"query-string": "^7.0.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-console-emulator": "^5.0.2",
"react-dom": "^18.2.0",
"react-ga": "^3.3.0",
"react-gravatar": "^2.6.3",
"react-redux": "^8.0.5",
"react-router-bootstrap": "^0.26.2",
"react-router-dom": "^6.8.1",
"react-scripts": "^4.0.3",
"react-use-websocket": "^2.7.1",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"styled-components": "^5.3.1",
"styled-theming": "^2.2.0",
"swagger-ui-react": "^3.50.0",
"typescript": "4.5.2",
"universal-cookie": "^4.0.4",
"use-query-params": "^1.2.3",
"web-vitals": "^1.0.1",
"xterm-for-react": "^1.0.4"
},
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"start:remote": "BROWSER_ARGS='--remote-debugging-port=9222' react-scripts --openssl-legacy-provider start",
"build": "yarn run swagger && react-scripts --openssl-legacy-provider build",
"test": "react-scripts --openssl-legacy-provider test",
"eject": "react-scripts --openssl-legacy-provider eject",
"swagger": "npm run openapi",
"openapi": "npm run openapi:v1 && npm run openapi:v2",
"openapi:sync": "cp ../apiserver/openapi/swagger-v1.yml ./public/swagger.yml",
"openapi:v1": "openapi -i ./public/swagger.yml -o src/common/services/openapi/v1 --useUnionTypes --exportSchemas=true",
"openapi:v2": "openapi -i ./public/swagger-v2.yml -o src/common/services/openapi/v2 --useUnionTypes --exportSchemas=true"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {}
}