-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
106 lines (106 loc) · 3.2 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": "onecloud",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "node --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} node_modules/@vue/cli-service/bin/vue-cli-service.js build",
"analyz": "analyzer_report=true node --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} node_modules/@vue/cli-service/bin/vue-cli-service.js build --report-json",
"lint": "vue-cli-service lint --fix",
"test:unit": "vue-cli-service test:unit",
"test:unit:dev": "vue-cli-service test:unit --watchAll",
"i18n:generate": "node ./src/tools/i18n-generator generate",
"deploy": "node ./upload/upload.js"
},
"dependencies": {
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^1.0.2",
"ajv": "^6.12.3",
"ajv-errors": "^1.0.1",
"animejs": "^3.1.0",
"ant-design-vue": "^1.6.4",
"axios": "^0.19.0",
"chalk": "^4.1.0",
"clipboard": "^2.0.11",
"codemirror": "^5.52.2",
"compressing": "^1.5.1",
"core-js": "^3.6.5",
"crypto-js": "^4.0.0",
"custom-protocol-detection": "^1.0.1",
"echarts": "^4.4.0",
"echarts-liquidfill": "^2.0.6",
"extend": "^3.0.2",
"fast-json-stable-stringify": "^2.1.0",
"html2canvas": "^1.3.2",
"js-base64": "^2.5.1",
"js-cookie": "^3.0.4",
"js-yaml": "^3.13.1",
"jspdf": "^2.4.0",
"jsrsasign": "^8.0.20",
"lodash": "^4.17.21",
"marked": "^1.1.0",
"mockjs": "^1.1.0",
"moment": "^2.24.0",
"node-ssh": "^11.1.1",
"numerify": "^1.2.9",
"objectpath": "^2.0.0",
"qs": "^6.8.0",
"ramda": "^0.27.0",
"resize-detector": "^0.2.1",
"resize-observer-polyfill": "^1.5.1",
"shelljs": "^0.8.4",
"socket.io-client": "^2.3.0",
"v-charts": "^1.19.0",
"vue": "^2.7.14",
"vue-cropperjs": "^4.0.1",
"vue-grid-layout": "^2.3.7",
"vue-i18n": "^8.14.0",
"vue-json-excel": "^0.3.0",
"vue-router": "^3.2.0",
"vuedraggable": "^2.23.2",
"vuex": "^3.4.0",
"vxe-table": "2.9.22",
"vxe-table-plugin-antd": "1.9.2",
"xe-utils": "^2.7.12",
"xlsx": "^0.16.9",
"xterm": "3.7.0"
},
"devDependencies": {
"@ant-design/colors": "^4.0.1",
"@vue/cli-plugin-babel": "~4.5.18",
"@vue/cli-plugin-eslint": "~4.5.18",
"@vue/cli-plugin-router": "~4.5.18",
"@vue/cli-plugin-unit-jest": "~4.5.18",
"@vue/cli-plugin-vuex": "~4.5.18",
"@vue/cli-service": "~4.5.18",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"autodll-webpack-plugin": "^0.4.2",
"babel-eslint": "^10.1.0",
"colors": "^1.4.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"glob": "^7.1.6",
"less": "^3.11.3",
"less-loader": "^6.1.0",
"lint-staged": "^9.5.0",
"sass": "~1.32.0",
"sass-loader": "^8.0.2",
"svg-sprite-loader": "^5.0.0",
"vue-template-compiler": "^2.6.11",
"webpack-theme-color-replacer": "^1.3.13"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint --fix",
"git add"
]
}
}