-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.07 KB
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
{
"name": "TdDesign",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^2.6.9",
"highlightjs": "^9.12.0",
"iview": "^3.4.2",
"iview-editor": "^1.1.1",
"js-md5": "^0.7.3",
"marked": "^0.6.3",
"moment": "^2.24.0",
"register-service-worker": "^1.6.2",
"td-component": "^1.0.7",
"vue": "^2.6.6",
"vue-router": "^3.0.7",
"vuex": "^3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.2",
"@vue/cli-plugin-eslint": "^3.9.2",
"@vue/cli-plugin-pwa": "^3.9.0",
"@vue/cli-service": "^3.9.2",
"@vue/eslint-config-prettier": "^4.0.1",
"axios": "^0.18.1",
"babel-eslint": "^10.0.2",
"clipboard": "^2.0.4",
"eslint": "^5.8.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-vue": "^5.2.3",
"js-cookie": "^2.2.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^8.2.1",
"vue-cli-plugin-iview": "^1.0.6",
"vue-template-compiler": "^2.5.21"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-debugger": "off",
"vue/mustache-interpolation-spacing": "error",
"vue/arrow-spacing": "error",
"vue/block-spacing": "error",
"vue/brace-style": "error",
"vue/comma-dangle": "error",
"vue/eqeqeq": "error",
"vue/key-spacing": "error",
"vue/object-curly-spacing": "error",
"vue/space-infix-ops": "warning",
"vue/space-unary-ops": "warning",
"vue/singleline-html-element-content-newline": "error",
"vue/multiline-html-element-content-newline": "error",
"vue/no-multi-spaces": "warning",
"vue/no-spaces-around-equal-signs-in-attribute": "error",
"vue/no-parsing-error": "off",
"vue/this-in-template": "error",
"vue/no-template-key": "off",
"vue/no-unused-vars": "off",
"vue/no-use-v-if-with-v-for": "off",
"vue/require-component-is": "off",
"vue/require-v-for-key": "off",
"vue/valid-template-root": "off",
"vue/valid-v-else-if": "off",
"vue/valid-v-else": "off",
"vue/no-unused-components": "off",
"vue/require-prop-type-constructor": "off",
"vue/require-render-return": "off",
"vue/require-valid-default-prop": "off",
"vue/return-in-computed-property": "off",
"vue/use-v-on-exact": "off",
"vue/valid-v-bind": "off",
"vue/valid-v-cloak": "off",
"vue/valid-v-for": "off",
"vue/valid-v-if": "off",
"vue/valid-v-model": "off",
"vue/valid-v-on": "off",
"vue/valid-v-once": "off",
"vue/valid-v-pre": "off",
"vue/valid-v-show": "off",
"vue/valid-v-text": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
}
}