forked from higress-group/himarket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.97 KB
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
{
"name": "portal-admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"start": "node server.js",
"serve": "npm run build && npm start",
"serve-live": "npx live-server dist --port=3000 --entry-file=index.html"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@babel/runtime": "^7.24.0",
"antd": "^6.0.1",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"dayjs": "^1.11.10",
"echarts": "^5.5.0",
"helmet": "^7.1.0",
"js-yaml": "^4.1.0",
"monaco-editor": "^0.52.2",
"postcss": "^8.5.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-markdown-editor-lite": "^1.3.4",
"react-monaco-editor": "^0.59.0",
"react-router-dom": "^6.28.0",
"remark-gfm": "^4.0.1",
"swagger-ui-react": "^5.29.0",
"tailwind-merge": "^3.3.1",
"terser": "^5.43.1"
},
"resolutions": {
"@babel/runtime": "^7.24.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.21",
"compression": "^1.8.0",
"cors": "^2.8.5",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"express": "^4.21.2",
"globals": "^16.3.0",
"path": "^0.12.7",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3",
"url": "^0.11.4",
"typescript-eslint": "^8.35.1",
"vite": "^4.5.14"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,json,md}": [
"prettier --write"
]
}
}