-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "vue-demo",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"eslint": "eslint . --fix",
"prettier": "prettier . --write",
"prepare": "husky install",
"lint:lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,tsx,html,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,less,styl}": [
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"dependencies": {
"@varlet/touch-emulator": "^3.3.16",
"@varlet/ui": "^3.2.4",
"apexcharts": "^3.48.0",
"echarts": "^5.5.0",
"flv.js": "^1.6.2",
"jsqr": "^1.4.0",
"opencv-qr": "^0.7.0",
"qrcode": "^1.5.3",
"qrcode-decoder": "^0.3.3",
"qrcodejs2": "^0.0.2",
"vue": "^3.4.19",
"vue-qr": "^4.0.9",
"vue-router": "4",
"vue3-apexcharts": "^1.5.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.41",
"prettier": "3.2.5",
"tailwindcss": "^3.4.10",
"vite": "^5.1.4",
"vite-plugin-pwa": "^0.20.0",
"vue-eslint-parser": "^9.4.2"
}
}