-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2 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
{
"name": "mkdocseditor_web",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.8.0",
"diff-match-patch": "^1.0.5",
"mavon-editor": "^2.9.0",
"register-service-worker": "^1.7.1",
"terser": "^5.5.0",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-material": "^1.0.0-beta-15",
"vue-property-decorator": "^9",
"vue-router": "^3",
"vue-toasted": "^1.1.28"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-plugin-pwa": "^4.5.9",
"@vue/cli-plugin-typescript": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"eslint": "^7",
"eslint-plugin-vue": "^7",
"husky": "^5.0.4",
"lint-staged": "^10.5.2",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"typescript": "^4.1.2",
"vue-template-compiler": "^2.6.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"plugin:@typescript-eslint/recommended",
"eslint:recommended"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-empty-interface": "off",
"indent": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/camelcase": "off",
"vue/script-indent": [
"warn",
4,
{
"baseIndent": 1
}
]
},
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaFeatures": {
"legacyDecorators": true
}
},
"plugins": [
"@typescript-eslint"
]
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}