forked from PanJiaChen/vue-element-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "vue-element-admin",
"version": "4.4.0",
"description": "A magical vue admin. An out-of-box UI solution for enterprise applications. Newest development stack of vue. Lots of awesome features",
"author": "Pan <[email protected]>",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"new": "plop",
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
"test:unit": "jest --clearCache && vue-cli-service test:unit",
"test:ci": "npm run lint && npm run test:unit"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/state": "^6.5.2",
"axios": "1.8.2",
"clipboard": "2.0.11",
"codemirror": "^6.0.1",
"driver.js": "1.3.5",
"dropzone": "6.0.0-beta.2",
"echarts": "5.6.0",
"element-plus": "^2.4.4",
"file-saver": "2.0.5",
"fuse.js": "7.1.0",
"js-cookie": "3.0.5",
"jsonlint": "1.6.3",
"jsonlint-mod": "^1.7.6",
"jszip": "3.10.1",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"path-browserify": "^1.0.1",
"path-to-regexp": "8.2.0",
"screenfull": "6.0.2",
"script-loader": "0.7.2",
"sortablejs": "^1.15.6",
"split-pane-v3": "^1.1.2",
"tui-editor": "1.4.10",
"vue": "3.5.13",
"vue-codemirror": "^6.1.1",
"vue-router": "4.5.0",
"vuedraggable": "4.0.1",
"vuex": "4.1.0",
"xlsx": "0.18.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.21",
"chalk": "5.4.1",
"chokidar": "4.0.3",
"connect": "3.7.0",
"eslint": "^9.22.0",
"eslint-plugin-vue": "^10.0.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"mockjs": "1.1.0",
"plop": "4.0.1",
"runjs": "4.4.2",
"sass": "1.85.1",
"sass-loader": "16.0.5",
"serve-static": "1.16.2",
"svg-sprite-loader": "6.0.11",
"svgo": "3.3.2",
"unplugin-auto-import": "^19.1.1",
"unplugin-vue-components": "^28.4.1",
"vite": "^6.2.1",
"vite-plugin-commonjs": "^0.10.1",
"vite-plugin-svg-icons": "^2.0.1"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/PanJiaChen/vue-element-admin/issues"
},
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"keywords": [
"vue",
"admin",
"dashboard",
"element-plus",
"boilerplate",
"admin-template",
"management-system"
],
"license": "MIT",
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
}
}