package.json
3.29 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "yunxiao-admin-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode development",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"commit": "cz"
},
"dependencies": {
"animate.css": "^4.1.0",
"axios": "^0.18.1",
"captcha-mini": "^1.1.0",
"core-js": "^2.6.11",
"echarts": "^4.8.0",
"element-ui": "^2.13.2",
"js-cookie": "^2.2.1",
"nprogress": "^0.2.0",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"uuid": "^8.3.0",
"v-charts": "^1.19.0",
"video.js": "^7.8.4",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vue-simple-uploader": "^0.7.4",
"vuex": "^3.1.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-unit-mocha": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"chai": "^4.1.2",
"commitizen": "^4.2.0",
"cz-conventional-changelog": "^3.2.1",
"cz-emoji": "^1.2.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"filemanager-webpack-plugin": "^2.0.5",
"node-sass": "^4.13.0",
"qr-image": "^3.2.0",
"sass-loader": "^7.3.1",
"svg-sprite-loader": "^4.3.0",
"vue-particles": "^1.0.9",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-tabs": "off",
"space-before-function-paren": "off"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"config": {
"cz-emoji": {
"types": [
{
"emoji": "🌟",
"code": "🌟feat:",
"description": "A new feature",
"name": "feature"
},
{
"emoji": "🐞",
"code": "🐞fix:",
"description": "A bug fix",
"name": "fix"
},
{
"emoji": "📝",
"code": "📝docs:",
"description": "update docs",
"name": "docs"
},
{
"emoji": "💰",
"code": "💰perf:",
"description": "Improves performance with this change",
"name": "perf"
},
{
"emoji": "🎨",
"code": "🎨style:",
"description": "Doesn't affect the meaning of the code (white-space, semi-colons, etc)",
"name": "style"
},
{
"emoji": "🚓",
"code": "🚓test:",
"description": "Testing improved with new or fixed tests",
"name": "test"
},
{
"emoji": "🔨",
"code": "🔨build-conf:",
"description": "更新一些配置文件",
"name": "build-conf"
},
{
"emoji": "💊",
"code": "💊revert:",
"description": "Reverts a previous commit",
"name": "revert"
}
]
},
"commitizen": {
"path": "./node_modules/cz-emoji"
}
}
}