-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "webinizer-webclient",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite --port 18888 --host 0.0.0.0",
"build:stage": "rimraf dist && vue-tsc --noEmit && vite build --mode staging",
"build:prod": "rimraf dist && vue-tsc --noEmit && vite build",
"preview:stage": "npm run build:stage && vite preview",
"serve": "npm run build:prod && vite preview --port 18888 --host 0.0.0.0",
"lint": "eslint --ext .ts,.vue src",
"lint-fix": "eslint --ext .ts,.vue src --fix",
"prepare": "husky install"
},
"dependencies": {
"@mdi/font": "7.1.96",
"axios": "^1.7.4",
"github-markdown-css": "^5.2.0",
"highlight.js": "^11.7.0",
"isomorphic-dompurify": "^1.2.0",
"isomorphic-ws": "^5.0.0",
"lodash.clonedeep": "^4.5.0",
"marked": "^4.2.12",
"moment": "^2.29.4",
"roboto-fontface": "*",
"vue": "^3.2.45",
"vue-dompurify-html": "^4.1.4",
"vue-router": "^4.1.6",
"vue-toastification": "^2.0.0-rc.5",
"vuetify": "3.2.0",
"vuex": "^4.1.0",
"vuex-persistedstate": "^4.1.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/marked": "^4.0.8",
"@types/webfontloader": "^1.6.35",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.2",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"typescript": "^5.5.4",
"vite": "^4.5.3",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-static-copy": "^0.13.1",
"vite-plugin-top-level-await": "^1.2.2",
"vite-plugin-vuetify": "^1.0.1",
"vue-cli-plugin-vuetify": "~2.5.8",
"vue-eslint-parser": "^9.0.0",
"vue-tsc": "^2.0.29"
}
}