-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
117 lines (117 loc) · 3.48 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
112
113
114
115
116
117
{
"name": "am-editor-vue2",
"version": "1.0.0",
"keyword": "editor-vue2",
"description": "A Vue.js project",
"author": "张彬 <bjzhang.bin@163.com>",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"serve": "vue-cli-service serve",
"docs:build": "vue-cli-service build",
"build": "node ./scripts/build",
"lerna-publish": "yarn build & lerna publish",
"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-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-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",
"ant-design-vue": "^1.7.8",
"codemirror": "^5.63.3",
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.2.0",
"vuex": "^3.4.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.2.20",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"father-build": "^1.20.1",
"lerna": "^4.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^11.2.3",
"prettier": "^2.2.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^5.0.0",
"typescript": "~4.1.5",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"@vue/prettier/@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}