-
Notifications
You must be signed in to change notification settings - Fork 354
/
package.json
108 lines (108 loc) · 3.01 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
{
"name": "element-plus-vite-starter",
"private": true,
"version": "1.1.1",
"scripts": {
"preinstall": "npx only-allow yarn",
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"prod": " vue-tsc --noEmit &&vite build",
"lint": "eslint --ext .vue,.js,.ts ./",
"prepare": "husky install"
},
"lint-staged": {
"*.{vue,js,ts}": [
"eslint --fix",
"npx prettier --write ./src ",
"git add ."
]
},
"dependencies": {
"@element-plus/icons-vue": "^0.2.7",
"@fullcalendar/daygrid": "^5.10.1",
"@fullcalendar/interaction": "^5.10.1",
"@fullcalendar/timegrid": "^5.10.1",
"@fullcalendar/vue3": "^5.10.1",
"@toast-ui/editor": "^3.1.3",
"@types/clipboard": "^2.0.7",
"@types/codemirror": "^5.60.5",
"@types/dom-to-image": "^2.6.4",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.178",
"@types/marked": "^4.0.2",
"@types/mockjs": "^1.0.6",
"@types/path-browserify": "^1.0.0",
"@types/vue-cropperjs": "^4.1.2",
"@vitejs/plugin-legacy": "^1.7.1",
"axios": "^0.26.0",
"clipboard": "^2.0.10",
"codemirror": "^5.65.2",
"crypto-es": "^1.2.7",
"css-color-function": "^1.3.3",
"dom-to-image": "^2.6.0",
"driver.js": "^0.9.8",
"echarts": "^5.3.0",
"element-plus": "^2.0.2",
"esbuild": "^0.14.23",
"file-saver": "^2.0.5",
"fullcalendar": "^5.10.2",
"fuse.js": "^6.5.3",
"js-cookie": "^3.0.1",
"jszip": "^3.7.1",
"jszip-utils": "^0.1.0",
"lodash": "^4.17.21",
"marked": "^4.0.12",
"mockjs": "^1.1.0",
"only-allow": "^1.1.0",
"path": "^0.12.7",
"path-browserify": "^1.0.1",
"path-to-regexp": "^6.2.0",
"process": "^0.11.10",
"qrcode.vue": "^3.3.3",
"sortablejs": "^1.14.0",
"stylus": "^0.56.0",
"unplugin-auto-import": "^0.6.1",
"vue": "^3.2.31",
"vue-cropperjs": "^5.0.0",
"vue-router": "^4.0.12",
"vuex": "^4.0.2",
"wangeditor": "^4.7.11",
"xlsx": "^0.18.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "^3.2.31",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^7.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"sass": "^1.49.7",
"typescript": "^4.5.5",
"unplugin-vue-components": "^0.17.18",
"vite": "2.8.3",
"vite-plugin-optimize-persist": "^0.1.2",
"vite-plugin-package-config": "^0.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"vite": {
"optimizeDeps": {}
}
}