-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "chargers-frontend",
"version": "5.1.3",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --fix --ignore-path .gitignore",
"format": "prettier --write --ignore-path .gitignore \"src/**/*.{vue,js,ts,json,html,css,less,scss,md}\""
},
"engines": {
"node": ">=16",
"yarn": "~4.0.1"
},
"dependencies": {
"axios": "^1.7.7",
"floating-vue": "^5.2.2",
"pinia": "^2.2.2",
"v-viewer": "^3.0.20",
"viewerjs": "^1.11.6",
"vue": "^3.5.10",
"vue-router": "^4.4.5",
"vuetify": "^3.3.23"
},
"devDependencies": {
"@babel/types": "^7.25.6",
"@mdi/js": "^7.4.47",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-typescript": "^12.0.0",
"dotenv": "^16.4.5",
"esbuild": "^0.19.12",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"less": "^4.2.0",
"mockjs": "^1.1.0",
"prettier": "3.3.3",
"typescript": "^5.6.2",
"unplugin-fonts": "^1.1.1",
"vite": "^4.5.5",
"vite-plugin-mock": "^3.0.2",
"vite-plugin-pwa": "^0.16.7",
"vite-plugin-vuetify": "^1.0.2",
"vitest": "^0.34.6",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^1.8.27"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/eslint-config-typescript",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"singleAttributePerLine": true,
"endOfLine": "lf",
"overrides": [
{
"files": "*.json",
"options": {
"singleQuote": false
}
}
]
},
"packageManager": "[email protected]"
}