-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
83 lines (83 loc) · 2.28 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
{
"name": "xueden-cloud-vue3-typescript",
"description": "基于SpringCloud Alibaba+Vue3.0开发的后台管理系统",
"version": "2.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"svgo": "svgo -f src/assets/iconsvg --config=src/assets/iconsvg/svgo.yml"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^27.0.0",
"@ckeditor/ckeditor5-image": "^27.0.0",
"@ckeditor/ckeditor5-link": "^27.0.0",
"@ckeditor/ckeditor5-vue": "^2.0.1",
"@toast-ui/editor": "^2.5.1",
"axios": "^0.21.0",
"core-js": "^3.6.5",
"echarts": "^4.9.0",
"element-plus": "^1.0.1-beta.27",
"localforage": "^1.9.0",
"lodash.debounce": "^4.0.8",
"normalize.css": "^8.0.1",
"ts-md5": "^1.2.7",
"vue": "^3.0.5",
"vue-i18n": "^9.0.0-beta.13",
"vue-router": "^4.0.1",
"vuex": "^4.0.0-rc.2"
},
"devDependencies": {
"@types/echarts": "^4.9.2",
"@types/jest": "^24.0.19",
"@types/lodash.debounce": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"body-parser": "^1.19.0",
"chokidar": "^3.4.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0",
"lint-staged": "^9.5.0",
"mockjs": "^1.1.0",
"node-dir": "^0.1.17",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"svg-sprite-loader": "^5.0.0",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"typescript": "~3.9.3",
"vue-jest": "^5.0.0-0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"keywords": [
"vue",
"vue3",
"vue3.0",
"vue3.x",
"typescript",
"admin",
"template",
"element-ui",
"element Plus"
],
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}