-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
executable file
·55 lines (55 loc) · 1.59 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
{
"name": "fancy-store",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"precommit": "lint-staged"
},
"dependencies": {
"amfe-flexible": "^2.2.1",
"axios": "^0.18.0",
"babel-plugin-import": "^1.11.0",
"compression-webpack-plugin": "^2.0.0",
"fastclick": "^1.0.6",
"husky": "^1.3.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.1",
"mockjs": "^1.0.1-beta3",
"postcss-px2rem": "^0.3.0",
"postcss-pxtorem": "^4.0.1",
"prerender-spa-plugin": "^3.4.0",
"prettier": "^1.13.7",
"qiniu-js": "^2.5.4",
"raven-js": "^3.27.0",
"swiper": "^4.4.6",
"terser": "^3.14.1",
"vant": "^1.6.15",
"vconsole": "^3.2.2",
"vue": "^2.5.21",
"vue-i18n": "^8.7.0",
"vue-meta-info": "^0.1.7",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"webpack-bundle-analyzer": "^3.0.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^1.3.1",
"vue-template-compiler": "^2.5.21"
},
"lint-staged": {
"*.{js,json,css,vue}": [
"prettier --tab-width 4 --print-width 200 --write",
"git add"
]
}
}