-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
{
"name": "cloudmusic",
"version": "1.0.0",
"author": "Mkild",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:vercel": "vue-cli-service build --mode vercel",
"lint": "vue-cli-service lint",
"fix": "eslint --fix ./src",
"prettier": "prettier --write ./src",
"prepare": "husky install"
},
"dependencies": {
"@better-scroll/core": "^2.4.2",
"@better-scroll/mouse-wheel": "^2.4.2",
"@better-scroll/scroll-bar": "^2.4.2",
"axios": "^0.24.0",
"clipboard": "^2.0.8",
"core-js": "^3.6.5",
"element-ui": "^2.15.7",
"good-storage": "^1.1.1",
"js-md5": "^0.7.3",
"lodash-es": "^4.17.21",
"qrcode.vue": "^1.7.0",
"qs": "^6.10.3",
"vue": "^2.6.11",
"vue-lazyload": "^1.3.3",
"vue-meta": "^2.4.0",
"vue-router": "^3.2.0",
"vuex": "^3.5.1",
"xgplayer": "^2.31.4"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^8.2.2",
"babel-plugin-component": "^1.1.1",
"cz-customizable": "^6.3.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"postcss-preset-env": "^6.7.1",
"postcss-pxtorem": "^4.0.1",
"prettier": "^2.5.1",
"sass": "^1.26.5",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.6.11",
"workbox-webpack-plugin": "^6.4.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix"
]
}
}