-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 2.71 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
{
"name": "go-manager-web",
"author": "hujb",
"licence": "MIT",
"version": "1.1.0",
"private": false,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx ./src",
"lint:fix": "eslint --fix --ext .js,.jsx ./src",
"clear-all": "rm -rf build node_modules",
"re-start": "rm -rf build node_modules && yarn install && yarn start",
"re-build": "rm -rf build node_modules && yarn install && yarn build"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/pro-components": "^2.3.58",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@faker-js/faker": "^7.6.0",
"@iconify/react": "^4.1.0",
"@monaco-editor/react": "^4.5.1",
"@mui/lab": "^5.0.0-alpha.103",
"@mui/material": "^5.11.10",
"@uiw/react-monacoeditor": "^3.5.8",
"antd": "^5.7.3",
"apexcharts": "^3.37.0",
"axios": "^1.3.4",
"change-case": "^4.1.2",
"date-fns": "^2.29.3",
"history": "^5.3.0",
"http-proxy-middleware": "^2.0.6",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.0.2",
"lodash": "^4.17.21",
"lua-format": "^1.4.1",
"lua-json": "^1.0.1",
"luaparse": "^0.3.1",
"numeral": "^2.0.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.43.1",
"react-i18next": "^12.3.1",
"react-js-cron": "^4.1.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.8.1",
"react-scripts": "^5.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-window": "^1.8.10",
"simplebar-react": "^3.2.1",
"web-vitals": "^3.1.1",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.4"
},
"overrides": {
"nth-check": "2.1.1"
}
}