forked from wuyuedefeng/vue-cli4-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "vue-cli4-config",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"crm": "vue-cli-service build --mode crm",
"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": {
"axios": "^0.19.0",
"core-js": "^3.3.2",
"image-webpack-loader": "^6.0.0",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuex": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-router": "^4.0.0",
"@vue/cli-plugin-vuex": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"commitizen": "^4.0.3",
"commitlint-config-cz": "^0.12.1",
"conventional-changelog": "^3.1.14",
"conventional-changelog-cli": "^2.0.27",
"cz-customizable": "^6.2.0",
"glob-all": "^3.1.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"node-sass": "^4.12.0",
"postcss-import": "^12.0.1",
"purgecss-webpack-plugin": "^1.6.0",
"sass-loader": "^8.0.0",
"standard-version": "^7.0.0",
"svg-sprite-loader": "^4.1.6",
"vue-template-compiler": "^2.6.10",
"webpack-spritesmith": "^1.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"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"
}
}
}