-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.64 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
{
"name": "vue-vant-base",
"version": "0.1.0",
"private": true,
"description": "这个项目是将一些基础配置比如eslint,移动端适配等进行了封装,开发人员只需fork就可直接开箱即用,不用再做额外的配置",
"author": {
"name": "孟春健",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/RichOvernigh/test.git"
},
"license": "MIT",
"engines": {
"node": ">= 10.16"
},
"keywords": [
"Vue",
"Vant",
"开箱即用",
"前端框架"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"stylelint": "stylelint src/**/*.{html,vue,css,sass,scss} --fix",
"eslint": "vue-cli-service lint",
"lint": "yarn eslint && yarn stylelint"
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.6.5",
"dayjs": "^1.8.28",
"vant": "^2.8.6",
"vconsole": "^3.3.4",
"vue": "^2.6.11",
"vue-navigation": "^1.1.4",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@vue/cli-plugin-babel": "^4.4.0",
"@vue/cli-plugin-eslint": "^4.4.0",
"@vue/cli-plugin-router": "^4.4.0",
"@vue/cli-plugin-vuex": "^4.4.0",
"@vue/cli-service": "^4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-jsx-v-model": "^2.0.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"compression-webpack-plugin": "^4.0.0",
"eslint": "^6.7.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"fastclick": "^1.0.6",
"husky": "^4.2.5",
"less": "^3.11.3",
"less-loader": "^6.1.1",
"lint-staged": "^10.2.11",
"postcss-px-to-viewport": "^1.1.1",
"postcss-pxtorem": "^5.1.1",
"prettier": "^1.19.1",
"stylelint": "^13.6.0",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.17.2",
"vue-template-compiler": "^2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add -A"
],
"*.{html,vue,css,sass,scss}": [
"yarn stylelint"
]
}
}