-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.8 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
{
"name": "vue2-vant",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "cross-env environment=local vue-cli-service serve",
"build": "cross-env environment=local vue-cli-service build",
"lint": "vue-cli-service lint ./src",
"commit": "git-cz",
"lint:fix": "vue-cli-service lint --fix --ext .js,.jsx,.vue ./src",
"preinstall": "npx only-allow yarn",
"prod": "cross-env environment=prod vue-cli-service build",
"deploy": "gh-pages -d dist",
"removecache": "rimraf ./node_modules/.cache"
},
"dependencies": {
"@vant/area-data": "^1.2.2",
"@vue/composition-api": "^1.4.9",
"@vueuse/core": "^8.0.1",
"axios": "^0.19.2",
"core-js": "^3.6.5",
"dayjs": "^1.8.23",
"echarts": "^5.2.0",
"fastclick": "^1.0.6",
"lodash": "^4.17.21",
"qs": "^6.9.2",
"vant": "^2.12.26",
"vue": "^2.6.11",
"vue-baidu-map": "^0.21.22",
"vue-fragment": "^1.5.1",
"vue-router": "^3.1.6",
"vue2-helpers": "^1.1.7",
"vuex": "^3.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.3",
"@vue/cli-plugin-eslint": "~5.0.3",
"@vue/cli-service": "~5.0.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/runtime-dom": "^3.2.31",
"babel-plugin-import": "^1.12.0",
"babel-plugin-lodash": "^3.3.4",
"commitizen": "^4.2.4",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^6.0.3",
"cssnano": "^4.1.10",
"cssnano-preset-advanced": "^4.0.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.12.0",
"eslint-plugin-vue": "^8.0.3",
"gh-pages": "^3.2.3",
"git-cz": "^4.8.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"lodash-webpack-plugin": "^0.11.5",
"postcss-aspect-ratio-mini": "^1.0.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-px-to-viewport": "^1.1.0",
"postcss-url": "^8.0.0",
"postcss-viewport-units": "^0.1.6",
"postcss-write-svg": "^3.0.1",
"prettier": "^2.4.1",
"rimraf": "^2.6.3",
"speed-measure-webpack-plugin": "^1.5.0",
"style-resources-loader": "^1.2.1",
"unplugin-auto-import": "^0.6.6",
"unplugin-vue-components": "^0.18.0",
"unplugin-vue2-script-setup": "^0.10.0",
"vconsole-webpack-plugin": "^1.5.1",
"vue-cli-plugin-style-resources-loader": "~0.1.4",
"vue-template-compiler": "^2.6.11",
"zip-webpack-plugin": "^3.0.0"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,vue}": [
"prettier --write",
"yarn lint:fix"
]
}
}