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
| {
| "name": "vue3-project-template",
| "version": "0.0.0",
| "private": true,
| "scripts": {
| "dev": "vite --host --open",
| "build": "run-p type-check \"build-only {@}\" --",
| "preview": "vite preview",
| "build-only": "vite build",
| "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
| "lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
| "format": "prettier --write \"./**/*.{html,vue,ts,js,json}\"",
| "prepare": "husky install"
| },
| "dependencies": {
| "@element-plus/icons-vue": "^2.1.0",
| "@vueuse/core": "^10.5.0",
| "axios": "^1.5.1",
| "element-plus": "^2.4.1",
| "lodash-es": "^4.17.21",
| "pinia": "^2.1.7",
| "vue": "^3.3.4",
| "vue-router": "^4.2.5"
| },
| "devDependencies": {
| "@iconify-json/mdi": "^1.1.55",
| "@rushstack/eslint-patch": "^1.3.3",
| "@tsconfig/node18": "^18.2.2",
| "@types/node": "^18.18.6",
| "@vitejs/plugin-vue": "^4.4.0",
| "@vue/eslint-config-prettier": "^8.0.0",
| "@vue/eslint-config-typescript": "^12.0.0",
| "@vue/tsconfig": "^0.4.0",
| "eslint": "^8.49.0",
| "eslint-plugin-vue": "^9.17.0",
| "husky": "^8.0.3",
| "lint-staged": "^15.0.2",
| "npm-run-all2": "^6.1.1",
| "prettier": "^3.0.3",
| "sass": "^1.69.4",
| "typescript": "~5.2.0",
| "unplugin-auto-import": "^0.16.6",
| "unplugin-icons": "^0.17.1",
| "unplugin-vue-components": "^0.25.2",
| "vite": "^4.4.11",
| "vue-tsc": "^1.8.19"
| },
| "lint-staged": {
| "src/**/*.{js,ts,jsx,tsx,vue}": [
| "eslint --fix",
| "prettier --write"
| ]
| }
| }
|
|