-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "vue3-admin-templete",
"private": true,
"scripts": {
"dev": "vite",
"build": "pnpm run typecheck && vite build",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"lint": "eslint --ext .ts,.js,.vue . --fix",
"lint-staged": "lint-staged",
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.js",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.27.2",
"clipboard": "^2.0.11",
"element-plus": "^2.2.5",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.1",
"pinia": "^2.0.14",
"sortablejs": "^1.15.0",
"vue": "^3.2.37",
"vue-router": "^4.0.15"
},
"devDependencies": {
"@iconify-json/ep": "^1.1.3",
"@iconify-json/ic": "^1.1.4",
"@types/mockjs": "^1.0.6",
"@types/node": "*",
"@types/nprogress": "^0.2.0",
"@types/sortablejs": "^1.13.0",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/runtime-core": "^3.2.37",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.7",
"eslint": "8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "8.5.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"mockjs": "^1.1.0",
"pinia-plugin-persist": "^1.0.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"rollup-plugin-visualizer": "^5.6.0",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"svgo": "^2.8.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"unplugin-auto-import": "^0.8.4",
"unplugin-icons": "^0.14.1",
"unplugin-vue-components": "^0.19.5",
"vite": "^2.9.1",
"vite-plugin-inspect": "^0.4.3",
"vue-tsc": "^0.37.8"
},
"lint-staged": {
"*.{ts,js,vue}": "eslint --fix"
}
}