-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.75 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": "room-web",
"version": "1.6.0",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint --fix",
"format": "prettier --write .",
"prepare": "husky install",
"api:build": "./scripts/gen-api.sh"
},
"dependencies": {
"@cloudcmd/clipboard": "^2.0.0",
"axios": "^1.7.4",
"csv-parse": "^5.5.6",
"direct-vuex": "^0.12.1",
"highlight.js": "^11.6.0",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.0",
"moment": "^2.30.1",
"reflect-metadata": "^0.1.13",
"vue": "^2.7.14",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.3",
"vuetify": "^2.6.12",
"vuex": "^3.6.2"
},
"devDependencies": {
"@iconify/vue2": "^2.1.0",
"@mdi/font": "^7.0.96",
"@openapitools/openapi-generator-cli": "^2.4.26",
"@types/highlight.js": "^10.1.0",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.1",
"lint-staged": "^15.2.0",
"prettier": "3.3",
"sass": "~1.69",
"typescript": "5.2.2",
"unplugin-vue-components": "^0.27.4",
"vite": "^4.5.5",
"vue-template-compiler": "^2.7.14"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"lint-staged": {
"*.{ts,tsx,vue}": [
"eslint --fix"
]
},
"packageManager": "[email protected]"
}