-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
102 lines (102 loc) · 2.8 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
99
100
101
102
{
"name": "galaxy3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hinaser/react-new-window": "https://github.com/Hinaser/react-new-window",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.119",
"@mui/material": "^5.11.8",
"@mui/styles": "^5.11.7",
"@sentry/cli": "2.21.2",
"@sentry/react": "7.73.0",
"@sentry/tracing": "7.73.0",
"classnames": "^2.3.2",
"debounce": "^1.2.1",
"eqcss": "1.9.2",
"i18n-iso-countries": "^7.5.0",
"i18next": "^22.4.9",
"jss": "^10.10.0",
"jss-rtl": "^0.3.0",
"keycloak-js": "24.0.2",
"lint-staged": "^13.1.1",
"loglevel": "^1.8.1",
"mqtt": "5.6.2",
"pako": "^2.1.0",
"platform": "^1.3.6",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-carousel-dots": "^0.1.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.5",
"react-meta-tags": "^1.0.1",
"react-rangeslider": "^2.2.0",
"reconnectingwebsocket": "^1.0.0",
"sass": "1.58.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "2.1.4",
"tss-react": "^4.6.0",
"ua-parser-js": "1.0.33",
"webrtc-adapter": "8.2.0",
"worker-plugin": "^5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --no-bracket-spacing --print-width 120 --no-single-quote --write"
]
},
"scripts": {
"start": "webpack-dev-server --mode=development --no-open --hot",
"build": "webpack --mode=production",
"deploy": "webpack --mode=production && scripts/deploy.sh",
"format": "yarn run prettier --no-bracket-spacing --print-width 120 --no-single-quote --write 'src/**/*.js'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.16.5",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^4.2.0",
"dotenv": "^16.0.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.3.0",
"husky": "8.0.3",
"mini-css-extract-plugin": "^2.4.5",
"process": "^0.11.10",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"thread-loader": "^3.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
}
}