-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "cloud-app",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"serve": "vite --host localhost --port 8080",
"preview": "vite preview --host localhost --port 8080",
"build": "vite build --out-dir dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"ant-design-vue": "^4.2.3",
"core-js": "^3.37.1",
"dayjs": "^1.11.12",
"infinimesh-proto": "^3.1.5",
"js-cookie": "^3.0.5",
"js-generate-password": "^1.0.0",
"markdown-it": "^14.1.0",
"markdown-it-emoji": "^3.0.0",
"dompurify": "^3.0.5",
"highlight.js": "^11.8.0",
"marked": "^5.1.2",
"marked-mangle": "^1.1.2",
"nocloud-proto": "https://github.com/slntopp/nocloud-proto#0ee38a002fda26c52c92bcc4e04195324d70d70c",
"nocloud-ui": "^1.0.19",
"nocloudjsrest": "^1.5.17",
"pinia": "^2.2.0",
"vnc-ui-vue": "^1.0.0",
"vue": "^3.4.35",
"vue-google-charts": "^1.1.0",
"vue-gtag": "2.0.2-beta.0",
"vue-i18n": "^9.13.1",
"vue-router": "^4.4.1",
"vue-simple-password-meter": "^1.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.1",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/shared": "^3.4.35",
"eslint": "^9.8.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-vue": "^9.27.0",
"vite": "^5.3.5",
"vite-plugin-pwa": "^0.20.1",
"vite-svg-loader": "^5.1.0",
"@types/dompurify": "^3.0.2",
"@types/marked": "^5.0.1"
},
"standard": {
"globals": [
"VUE_APP_BASE_URL",
"VUE_APP_GA_ID",
"VUE_APP_S3_BUCKET",
"WebSocket",
"localStorage",
"location",
"caches"
]
}
}