-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
87 lines (87 loc) · 2.66 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
{
"name": "vue-editor-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@aomao/engine": "^2.9",
"@aomao/plugin-alignment": "^2.9",
"@aomao/plugin-backcolor": "^2.9",
"@aomao/plugin-bold": "^2.9",
"@aomao/plugin-code": "^2.9",
"@aomao/plugin-codeblock-vue": "^2.9",
"@aomao/plugin-file": "^2.9",
"@aomao/plugin-fontcolor": "^2.9",
"@aomao/plugin-fontfamily": "^2.9",
"@aomao/plugin-fontsize": "^2.9",
"@aomao/plugin-heading": "^2.9",
"@aomao/plugin-hr": "^2.9",
"@aomao/plugin-image": "^2.9",
"@aomao/plugin-indent": "^2.9",
"@aomao/plugin-italic": "^2.9",
"@aomao/plugin-line-height": "^2.9",
"@aomao/plugin-link-vue": "^2.9",
"@aomao/plugin-mark": "^2.9",
"@aomao/plugin-mark-range": "^2.9",
"@aomao/plugin-math": "^2.9",
"@aomao/plugin-mention": "^2.9",
"@aomao/plugin-orderedlist": "^2.9",
"@aomao/plugin-paintformat": "^2.9",
"@aomao/plugin-quote": "^2.9",
"@aomao/plugin-redo": "^2.9",
"@aomao/plugin-removeformat": "^2.9",
"@aomao/plugin-selectall": "^2.9",
"@aomao/plugin-status": "^2.9",
"@aomao/plugin-strikethrough": "^2.9",
"@aomao/plugin-sub": "^2.9",
"@aomao/plugin-sup": "^2.9",
"@aomao/plugin-table": "^2.9",
"@aomao/plugin-tasklist": "^2.9",
"@aomao/plugin-underline": "^2.9",
"@aomao/plugin-undo": "^2.9",
"@aomao/plugin-unorderedlist": "^2.9",
"@aomao/plugin-video": "^2.9",
"@aomao/toolbar-vue": "^2.9",
"ant-design-vue": "^3.2.12",
"babel-plugin-import": "^1.13.3",
"core-js": "^3.6.5",
"vue": "^3.0.0",
"vue-class-component": "^8.0.0-0",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.0-0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.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-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"prettier": "^2.2.1",
"typescript": "~4.1.5"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}