-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.53 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vue-cli-config",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"build": "rimraf dist&&vue-cli-service build",
"build:dev": "rimraf dist&&vue-cli-service build --mode dev",
"build:qa": "rimraf dist&&vue-cli-service build --mode qa",
"build:test": "rimraf dist&&vue-cli-service build --mode test",
"build:uat": "rimraf dist&&vue-cli-service build --mode uat",
"start": "node www.js",
"analyz": "rimraf dist&&vue-cli-service build --mode analyz",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commit:noverify": "git-cz --no-verify",
"release": "standard-version",
"push": "git push --follow-tags origin master"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"animate.css": "^3.7.2",
"axios": "^0.19.2",
"clipboard": "^2.0.11",
"copy-webpack-plugin": "^4.6.0",
"core-js": "^2.6.12",
"cross-env": "^7.0.3",
"element-ui": "^2.15.9",
"highlight.js": "^11.10.0",
"jquery": "^3.6.0",
"js-cookie": "3.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"quill": "1.3.7",
"quill-better-table": "1.2.10",
"quill-image-drop-module": "1.0.3",
"register-service-worker": "^1.7.2",
"style-resources-loader": "^1.5.0",
"swiper": "^5.4.5",
"vue": "^2.7.8",
"vue-awesome-swiper": "^4.1.1",
"vue-i18n": "^8.27.2",
"vue-mini-player": "^0.2.1",
"vue-router": "^3.5.4",
"vuex": "^3.6.2",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.6",
"@commitlint/config-conventional": "^8.3.6",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-e2e-nightwatch": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-pwa": "^3.12.1",
"@vue/cli-plugin-unit-jest": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.6.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"commitizen": "^4.2.5",
"commitlint-config-cz": "^0.12.1",
"compression": "^1.7.4",
"compression-webpack-plugin": "^3.1.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"cz-customizable": "^6.9.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"express": "^4.18.1",
"glob-all": "^3.3.0",
"husky": "^3.1.0",
"image-webpack-loader": "^5.1.0",
"lint-staged": "^9.5.0",
"morgan": "^1.9.1",
"node-sass": "^4.14.1",
"postcss-import": "^12.0.1",
"postcss-pxtorem": "^5.1.1",
"prerender-spa-plugin": "^3.4.0",
"purgecss-webpack-plugin": "^1.6.0",
"rimraf": "^2.7.1",
"sass-loader": "^7.3.1",
"sass-resources-loader": "^2.2.5",
"standard-version": "^7.1.0",
"swiper": "^7.2.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue-lazyload": "^1.3.4",
"vue-template-compiler": "^2.7.8",
"webpack-oss": "^2.1.6",
"webpack-spritesmith": "^1.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.+(js|ts|tsx|md|css|sass|less|graphql|yml|yaml|scss|json|vue)": [
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}