-
Notifications
You must be signed in to change notification settings - Fork 600
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.44 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.44 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "apisix-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --cache --max-warnings=0 --no-warn-ignored",
"lint:fix": "pnpm lint --fix",
"preview": "vite preview",
"prepare": "husky",
"e2e": "playwright test"
},
"dependencies": {
"@ant-design/pro-components": "^2.8.7",
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@hookform/resolvers": "5.0.1",
"@mantine/core": "^8.0.0",
"@mantine/hooks": "^8.0.0",
"@mantine/modals": "^8.0.0",
"@mantine/notifications": "^8.0.0",
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-query": "^5.74.4",
"@tanstack/react-router": "^1.116.0",
"antd": "^5.24.8",
"axios": "^1.13.5",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"fast-clean": "^1.4.0",
"i18next": "^25.0.1",
"immer": "^10.1.1",
"jotai": "^2.12.5",
"mobx": "^6.13.7",
"mobx-persist-store": "^1.1.8",
"mobx-react-lite": "^4.1.0",
"mobx-react-observer": "^1.1.0",
"monaco-editor": "^0.52.2",
"nanoid": "^5.1.5",
"qs": "^6.14.2",
"rambdax": "^11.3.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "7.56.1",
"react-i18next": "^15.4.1",
"react-use": "^17.6.0",
"znv": "^0.5.0",
"zod": "^3.24.3",
"zod-empty": "^1.4.4"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@estruyf/github-actions-reporter": "^1.11.0",
"@hookform/devtools": "^4.4.0",
"@iconify-json/material-symbols": "^1.2.20",
"@m6web/eslint-plugin-i18n": "^2.0.4",
"@playwright/test": "^1.57.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tanstack/react-query-devtools": "^5.74.4",
"@tanstack/react-router-devtools": "^1.116.0",
"@tanstack/router-plugin": "^1.116.1",
"@types/node": "^22.14.1",
"@types/qs": "^6.9.18",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.9.0",
"eslint": "^9.32.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-headers": "^1.3.3",
"eslint-plugin-i18next": "^6.1.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-playwright": "^2.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^15.5.2",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"selfsigned": "^5.4.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.38.0",
"unplugin-icons": "^22.1.0",
"unplugin-info": "^1.2.2",
"vite": "^6.3.6",
"vite-tsconfig-paths": "^5.1.4",
"yaml": "^2.7.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint:fix"
]
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"pnpm": {
"overrides": {
"lodash": ">=4.17.23",
"lodash-es": ">=4.17.23",
"minimatch": ">=9.0.7",
"rollup": ">=4.59.0",
"simple-git": ">=3.32.3",
"diff": ">=8.0.3",
"@swc/core": "1.10.0"
},
"onlyBuiltDependencies": [
"@swc/core",
"esbuild"
]
}
}