-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.26 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
118
119
120
121
122
123
124
125
126
127
128
{
"name": "code-block-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"new": "node build/bin/new.js",
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"docs:dev": "vuepress dev ./docs",
"docs:build": "vuepress build docs",
"test": "webpack --config=webpack.block.js"
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.6.4",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"vue": "^2.6.11",
"vue-class-component": "^7.2.2",
"vue-property-decorator": "^8.4.0",
"vue-router": "^3.1.5",
"vuex": "^3.1.2",
"zyb-pc-ui": "^1.2.1"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-eslint": "^4.2.0",
"@vue/cli-plugin-router": "^4.2.0",
"@vue/cli-plugin-typescript": "^4.2.0",
"@vue/cli-plugin-vuex": "^4.2.0",
"@vue/cli-service": "^4.2.0",
"@vue/eslint-config-standard": "^5.1.0",
"@vue/eslint-config-typescript": "^5.0.1",
"chalk": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.1.2",
"file-save": "^0.2.0",
"iceworks": "^3.1.13",
"inquirer": "^7.0.4",
"json-templater": "^1.2.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"ora": "^4.0.3",
"screenshot": "^0.1.0",
"typescript": "~3.7.5",
"uppercamelcase": "^3.0.0",
"validate-npm-package-name": "^3.0.0",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.3.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"vue/max-attributes-per-line": [
2,
{
"singleline": 10,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}
],
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/name-property-casing": [
"error",
"PascalCase"
],
"vue/no-v-html": "off",
"vue/html-self-closing": "off",
"semi": [
2,
"never"
],
"quotes": [
2,
"single"
],
"no-useless-return": "off",
"no-constant-condition": "off",
"prefer-promise-reject-errors": "off",
"handle-callback-err": "off",
"no-trailing-spaces": "off",
"vue/valid-v-model": "off",
"no-redeclare": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}