-
Notifications
You must be signed in to change notification settings - Fork 260
/
package.json
98 lines (98 loc) · 2.95 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
{
"name": "vue-vant-base",
"version": "0.1.0",
"private": true,
"description": "这个项目是将一些基础配置比如eslint,移动端适配等进行了封装,开发人员只需fork就可直接开箱即用,不用再做额外的配置",
"repository": {
"type": "git",
"url": "https://github.com/snowzijun/vue-vant-base"
},
"license": "MIT",
"engines": {
"node": ">= 10.16"
},
"keywords": [
"Vue",
"Vant",
"开箱即用",
"前端框架"
],
"scripts": {
"serve": "vue-cli-service serve --mode dev",
"build": "vue-cli-service build --mode prod",
"build:prod": "vue-cli-service build --mode prod",
"build:staging": "vue-cli-service build --mode staging",
"build:test": "vue-cli-service build --mode test",
"stylelint": "stylelint src/**/*.{html,vue,css,sass,scss} --fix",
"eslint": "vue-cli-service lint",
"lint": "yarn eslint && yarn stylelint"
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.16.1",
"dayjs": "^1.10.6",
"qs": "^6.10.1",
"regenerator-runtime": "^0.13.9",
"vant": "^2.12.26",
"vconsole": "^3.9.1",
"vue": "^2.6.14",
"vue-navigation": "^1.1.4",
"vue-router": "^3.5.2",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-plugin-vuex": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.3",
"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": "6.1.1",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.16.0",
"fastclick": "^1.0.6",
"husky": "^7.0.1",
"less": "^4.1.1",
"less-loader": "6.2.0",
"lint-staged": "^11.1.2",
"postcss-px-to-viewport": "^1.1.1",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.3.2",
"style-resources-loader": "^1.4.1",
"stylelint": "^13.13.1",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.20.1",
"vue-cli-plugin-style-resources-loader": "^0.1.5",
"vue-template-compiler": "^2.6.14",
"webpack-bundle-analyzer": "^4.4.2"
},
"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"
]
}
}