-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
89 lines (89 loc) · 2.53 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
{
"name": "admin-element-vue-vite-ts",
"description": "Vue3.x Element-Plus Pinia Vite Admin",
"private": true,
"version": "2.0.0",
"author": "LiQingSong <[email protected]>",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:dev": "vue-tsc --noEmit && vite build --mode development",
"build:test": "vue-tsc --noEmit && vite build --mode test",
"preview": "vite preview",
"svgo": "svgo -f src/assets/iconsvg",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged",
"prepare": "husky install",
"preinstall": "only-allow pnpm"
},
"dependencies": {
"axios": "^1.2.2",
"echarts": "^5.4.1",
"element-plus": "^2.2.28",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"pinia": "^2.0.28",
"qs": "^6.11.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-vue": "^3.2.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.2",
"less": "^4.1.3",
"lint-staged": "^13.1.0",
"mockjs": "^1.1.0",
"only-allow": "^1.1.1",
"postcss": "^8.4.20",
"postcss-html": "^1.5.0",
"prettier": "^2.8.1",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recess-order": "^3.1.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-less": "^1.0.6",
"svgo": "^3.0.2",
"typescript": "^4.9.4",
"vite": "^3.2.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^1.0.19"
},
"engines": {
"node": ">= 14.18.0"
},
"keywords": [
"vite",
"vitejs",
"vite3",
"vue",
"vue3",
"vue3.0",
"vue3.x",
"pinia",
"typescript",
"frame",
"template"
]
}