-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
133 lines (133 loc) · 4.27 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "ops-console",
"version": "0.1.0",
"description": "Operations console for KubeAGI",
"scripts": {
"analyze": "cross-env ANALYZE=1 UMI_ENV=prod max build --max_old_space_size=4096",
"build": "cross-env UMI_ENV=prod max build --max_old_space_size=4096 && npm run build:menu",
"build:all": "nr build && ./build.sh",
"build:menu": "node ./config/menu/index.mjs",
"build:menu-watch": "cross-env WATCH=1 MENU_JSON_PATH=../../public/menu.json node ./config/menu/index.mjs",
"dev": "concurrently \"max dev\" \"npm run build:menu-watch\"",
"postinstall": "max setup",
"lint": "npm run lint:es && npm run lint:style",
"lint-fix": "npm run lint-fix:es && npm run lint-fix:style",
"lint-fix:es": "eslint --ext .jsx,.js,.tsx,.ts src --fix",
"lint-fix:style": "stylelint \"{src,tests}/**/*.{css,less,js,jsx,ts,tsx}\" --fix",
"lint:es": "eslint --ext .jsx,.js,.tsx,.ts src",
"lint:style": "stylelint \"{src,tests}/**/*.{css,less,js,jsx,ts,tsx}\"",
"prepare": "husky install",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"preview": "max preview",
"start": "max dev",
"test": "jest",
"test:coverage": "max g jest --coverage"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix --allow-empty-input",
"prettier --write"
],
"*.{js,jsx}": [
"stylelint --fix --allow-empty-input",
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"stylelint --fix",
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@alilc/lowcode-datasource-engine": "^1.0.0",
"@alilc/lowcode-datasource-fetch-handler": "latest",
"@ant-design/icons": "^5.0.0",
"@ant-design/pro-components": "^2.3.52",
"@formily/antd": "^2.1.4",
"@formily/core": "^2.1.4",
"@formily/react": "^2.1.4",
"@lobehub/tts": "^1.23.4",
"@lobehub/ui": "^1.128.4",
"@tenx-ui/auth-utils": "0.0.1",
"@tenx-ui/charts": "1.1.2",
"@tenx-ui/form-helper": "^0.0.2",
"@tenx-ui/icon": "^2.4.42",
"@tenx-ui/icon-materials": "^0.1.7",
"@tenx-ui/logs": "^3.0.5",
"@tenx-ui/materials": "1.5.35",
"@tenx-ui/utils": "^2.3.1",
"@umijs/max": "^4.0.42",
"@yunti/lowcode-datasource-axios-handler": "^1.0.1",
"@yuntijs/arcadia-bff-sdk": "^1.2.17",
"@yuntijs/chat": "workspace:*",
"@yuntijs/react-markdown-lowcode-materials": "1.0.1",
"@yuntijs/request": "^1.0.0",
"@yuntijs/ui-lowcode-materials": "^1.0.0",
"KubeAGIUpload": "workspace:*",
"antd": "^5.12.2",
"antd-style": "^3.6.1",
"app-card": "workspace:*",
"axios": "1.6.2",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"dayjs": "^1.11.7",
"father": "^4.3.1",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"graphql-tag": "^2.12.6",
"kiwi-intl": "1.2.6-beta.0",
"kubeagi-knowledge-delete-modal": "workspace:*",
"kubeagi-knowledge-edit-modal": "workspace:*",
"lodash": "^4.17.21",
"lucide-react": "^0.315.0",
"query-string": "^8.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"shared-components": "workspace:*",
"swr": "^2.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13",
"@types/classnames": "^2.2.7",
"@types/express": "^4.17.0",
"@types/history": "^4.7.2",
"@types/jest": "^27",
"@types/lodash": "^4.14.144",
"@types/qs": "^6.5.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@yuntijs/lint": "^1.5.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"commitlint": "^18",
"concurrently": "^7.6.0",
"cross-env": "^5.1.4",
"eslint": "^8.56.0",
"husky": "^8.0.1",
"jest": "^27",
"lint-staged": "^15",
"prettier": "^3",
"remark": "^14",
"remark-cli": "^11",
"stylelint": "^15",
"typescript": "^5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.1.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}