-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 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
{
"name": "@yunion/web-console",
"version": "0.1.0",
"author": "houjiazong <houjiazong@gmail.com>",
"private": true,
"scripts": {
"serve": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"dev": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"start": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"build": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"@novnc/novnc": "1.0.0",
"ant-design-vue": "^1.6.5",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"core-js": "^3.6.5",
"crypto-js": "^4.0.0",
"dayjs": "^1.11.10",
"debug": "^4.1.1",
"guacamole-common-js": "^1.3.0",
"js-base64": "^2.5.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"normalize.css": "^8.0.1",
"qs": "^6.6.0",
"querystring-es3": "^0.2.1",
"socket.io-client": "^2.2.0",
"vue": "^2.7.14",
"vue-i18n": "^8.21.1",
"vue-router": "^3.2.0",
"vuex": "^3.4.0",
"xterm": "^5.2.1",
"xterm-addon-fit": "^0.7.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-unit-jest": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"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",
"less": "^4.2.0",
"less-loader": "^11.1.0",
"lint-staged": "^9.5.0",
"sass": "^1.69.7",
"sass-loader": "^12.6.0",
"vue-template-compiler": "^2.7.14"
},
"resolutions": {
"@achrinza/node-ipc": "^10.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"vue-cli-service lint",
"git add"
],
"src/**/*.vue": [
"vue-cli-service lint",
"git add"
]
}
}