forked from CloudExplorer-Dev/CloudExplorer-Lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.05 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
{
"name": "cloudexplorer-lite",
"version": "main",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"framework/**",
"services/**"
],
"scripts": {
"dev": "yarn workspaces foreach -pvi run dev",
"lint": "yarn workspaces foreach -pvi run lint",
"build": "yarn workspaces foreach -ptvi run build-only",
"dev:base": "yarn workspace ce-base run dev",
"lint:base": "yarn workspace ce-base run lint",
"build:base": "yarn workspace ce-base run build-only",
"dev:manage": "yarn workspace management-center run dev",
"lint:manage": "yarn workspace management-center run lint",
"build:manage": "yarn workspace management-center run build-only",
"dev:vm": "yarn workspace vm-service run dev",
"lint:vm": "yarn workspace vm-service run lint",
"build:vm": "yarn workspace vm-service run build-only",
"dev:bill": "yarn workspace finance-management run dev",
"lint:bill": "yarn workspace finance-management run lint",
"build:bill": "yarn workspace finance-management run build-only",
"dev:security": "yarn workspace security-compliance run dev",
"lint:security": "yarn workspace security-compliance run lint",
"build:security": "yarn workspace security-compliance run build-only",
"dev:operation": "yarn workspace operation-analysis run dev",
"lint:operation": "yarn workspace operation-analysis run lint",
"build:operation": "yarn workspace operation-analysis run build-only"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.6",
"@vueuse/core": "^9.1.0",
"axios": "^0.27.2",
"decimal.js": "^10.4.3",
"echarts": "^5.4.0",
"echarts-liquidfill": "^3.1.0",
"element-plus": "2.3.7",
"fit2cloud-ui-plus": "1.0.6",
"ipaddr.js": "^2.0.1",
"jsencrypt": "^3.2.1",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"nanoid": "^4.0.0",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.0.16",
"sass": "^1.54.0",
"sortablejs": "^1.15.0",
"swiper": "^8.4.5",
"vue": "^3.2.37",
"vue-awesome-swiper": "^5.0.1",
"vue-echarts": "6.6.0",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.191",
"@types/node": "^16.11.47",
"@types/nprogress": "^0",
"@types/sortablejs": "^1",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.21.0",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.0",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass-loader": "^13.0.2",
"typescript": "~4.7.4",
"unplugin-vue-define-options": "^0.6.2",
"vite": "^3.0.4",
"vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "^0.18.1",
"vue-i18n": "^9.2.2",
"vue-tsc": "^0.39.5"
}
}