-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.87 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
{
"name": "@micro-app/common",
"version": "0.0.1",
"description": "Kubeworkz Frontend",
"author": "Kubeworkz",
"private": true,
"scripts": {
"build": "node --max-old-space-size=8192 ./node_modules/.bin/micro-app build --auto-prefix-scope --open-disabled-entry --mode production",
"build:slave": "npm run build -- --sub-module",
"dev": "micro-app serve --auto-prefix-scope --open-disabled-entry --mode development",
"dev:link": "npm run dev -- --open-soft-link",
"devDll": "npx webpack --config webpack.dll.config.js --env.NODE_ENV development",
"dll": "rm -rf dll && npm run dll-package",
"dll-package": "npm run productDll && npm run devDll",
"eslint": "micro-app vue-cli-service lint --fix --auto-prefix-scope --open-disabled-entry",
"inspect": "micro-app vue-cli-service inspect --auto-prefix-scope --open-disabled-entry --mode production",
"inspect:slave": "npm run inspect -- --sub-module",
"productDll": "npx webpack --config webpack.dll.config.js --env.NODE_ENV production",
"start": "micro-app-start -- --auto-prefix-scope",
"update": "micro-app update --auto-prefix-scope"
},
"dependencies": {
"@cloud-ui/x-ace-editor.vue": "~0.3.3",
"@cloud-ui/x-echarts.vue": "^0.9.2",
"@joskii/jchart": "^1.0.5",
"@micro-app/plugin-compatible": "^0.0.6",
"@micro-app/vue-cli-plugin-microapp": "^0.0.19",
"@vue/babel-preset-app": "4.2.3",
"@vue/cli-plugin-babel": "4.2.3",
"@vue/cli-plugin-eslint": "4.2.3",
"@vue/cli-service": "4.2.3",
"@vue/reactivity": "^3.1.1",
"add-asset-html-webpack-plugin": "^3.1.3",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"bezier-js": "^4.1.1",
"bignumber.js": "^9.0.1",
"brace": "0.11.1",
"clipboard": "^2.0.1",
"cloud-ui.vusion": "0.3.103",
"color-string": "^1.5.5",
"cron-parser": "^3.5.0",
"deep-object-diff": "^1.1.0",
"element-ui": "^2.15.12",
"eslint-config-2o3t": "^2.0.1",
"gl-matrix": "^3.3.0",
"i-font-awesome.vue": "^5.2.0",
"i-line-awesome.vue": "^1.0.2",
"is-valid-glob": "^1.0.0",
"js-base64": "^3.6.1",
"js-cookie": "^2.2.1",
"js-file-download": "^0.4.12",
"load-script": "^1.0.0",
"loadcss": "0.0.2",
"lodash": "^4.17.15",
"markdown-it": "^8.4.2",
"marked": "^0.3.6",
"moment": "^2.18.1",
"monaco-editor": "^0.23.0",
"monaco-editor-nls": "^3.0.0",
"monaco-editor-webpack-plugin": "^3.1.0",
"node-cron": "^3.0.0",
"nprogress": "^0.2.0",
"parse-ms": "^3.0.0",
"proto-ui.vusion": "0.3.69",
"sockjs-client": "^1.5.0",
"tapable": "^2.2.0",
"vee-validate": "^3.4.5",
"vue": "2.6.11",
"vue-cli-plugin-vusion": "^0.6.11",
"vue-clipboard2": "0.0.8",
"vue-input-tag": "^2.0.7",
"vue-json-pretty": "^1.8.0",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.1",
"vue-sticky-directive": "0.0.10",
"vue-template-compiler": "2.6.11",
"vuex": "^3.1.3",
"vuex-pathify": "^1.4.5",
"vusion-async-validator": "^1.8.8",
"vusion-utils": "^0.2.7",
"webpack-manifest-plugin": "^2.2.0",
"whatwg-fetch": "^2.0.4",
"xterm": "^3.2.0",
"yamljs": "0.3.0"
},
"devDependencies": {
"husky": "^2.7.0",
"lint-staged": "^9.5.0",
"webpack-cli": "^3.3.11",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"style-loader": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"npm run eslint -- --fix",
"git add"
]
}
}