-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
99 lines (99 loc) · 2.85 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
99
{
"name": "vue-cli3-project",
"version": "0.1.3",
"private": true,
"scripts": {
"commit": "git-cz",
"release": "release-it",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"serve": "vue-cli-service serve",
"test": "vue-cli-service serve --mode test",
"build": "vue-cli-service build --mode prod",
"build:push": "npm run build && npm run push",
"upcdn": "vue-cli-service build --mode prod && node ./scripts/upcdn.js",
"push": "node ./scripts/upload-server",
"analyze": "vue-cli-service build --mode analyze",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"new:comp": "node ./scripts/generateComponent",
"new:view": "node ./scripts/generateView"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/*_/_.{js,vue}": [
"npm run lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"animate.css": "^3.7.0",
"axios": "^0.18.0",
"countup.js": "^1.9.3",
"echarts": "^4.2.1",
"element-ui": "^2.8.2",
"js-cookie": "^2.2.0",
"mavon-editor": "^2.7.5",
"qs": "^6.6.0",
"tree-table-vue": "^1.1.0",
"v-charts": "^1.19.0",
"vue": "^2.5.21",
"vue-i18n": "^8.12.0",
"vue-quill-editor": "^3.0.6",
"vue-router": "^3.0.1",
"vuedraggable": "^2.19.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^8.0.0",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-plugin-unit-mocha": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"chai": "^4.1.2",
"chalk": "^2.4.2",
"commitizen": "^3.1.1",
"compression-webpack-plugin": "^2.0.0",
"conventional-changelog-cli": "^2.0.21",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"glob": "^7.1.3",
"husky": "^3.0.0",
"imagemin": "^6.1.0",
"imagemin-jpegtran": "^6.0.0",
"imagemin-pngquant": "^7.0.0",
"img-loader": "^3.0.1",
"lint-staged": "^9.2.0",
"mime": "^2.4.0",
"mockjs": "^1.0.1-beta3",
"ora": "^3.4.0",
"postcss-px-to-viewport": "^1.1.0",
"postcss-sprites": "^4.2.1",
"qiniu": "^7.2.1",
"release-it": "^12.3.3",
"sass": "^1.25.0",
"sass-loader": "^7.0.1",
"scp2": "^0.5.0",
"svg-sprite-loader": "^4.1.3",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.31.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.3.2"
}
}