-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
94 lines (94 loc) · 2.87 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
{
"name": "bobo-vue-adimn",
"version": "1.0.0",
"private": true,
"author": "BoBo <boboooooo159@gmail.com>",
"license": "MIT",
"scripts": {
"start": "vue-cli-service serve --mode dev",
"build": "vue-cli-service build --mode out",
"report": "vue-cli-service build --mode report",
"lint": "vue-cli-service lint --mode dev",
"inspect:dev": "vue-cli-service inspect --mode dev>webpack.dev.js",
"inspect:prod": "vue-cli-service inspect --mode out>webpack.prod.js",
"log": "conventional-changelog --config ./node_modules/vue-cli-plugin-commitlint/lib/log -i CHANGELOG.md -s -r 0",
"cz": "npm run log && git add . && git cz"
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "3.6.5",
"dayjs": "1.8.20",
"element-pro-crud": "^0.9.4-14",
"element-ui": "^2.15.0",
"inquirer": "^6.5.2",
"lodash": "^4.17.14",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"svg-sprite-loader": "^4.1.6",
"vue": "2.6.11",
"vue-awesome": "^3.5.4",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.5.0",
"vue-router": "3.4.3",
"vue-runtime-helpers": "^1.1.2",
"vuex": "3.5.1",
"vuex-class": "^0.3.2",
"vuex-persistedstate": "3.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/cli-plugin-babel": "4.5.4",
"@vue/cli-plugin-eslint": "4.5.4",
"@vue/cli-plugin-typescript": "4.5.4",
"@vue/cli-plugin-unit-mocha": "4.5.4",
"@vue/cli-service": "^4.5.4",
"@vue/eslint-config-airbnb": "^4.0.1",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-eslint": "^10.0.2",
"babel-plugin-component": "^1.1.1",
"chai": "^4.2.0",
"compression-webpack-plugin": "^4.0.0",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^5.2.3",
"html-webpack-include-assets-plugin": "^2.0.0",
"husky": "^3.1.0",
"image-webpack-loader": "^6.0.0",
"lint-staged": "^9.2.0",
"prettier": "^2.2.1",
"right-pad": "^1.0.1",
"sass": "^1.30.0",
"sass-loader": "10.1.0",
"commitizen": "^4.2.4",
"commitlint": "^16.1.0",
"svgo-loader": "2.2.1",
"typescript": "~3.8.3",
"vue-cli-plugin-axios": "0.0.4",
"vue-cli-plugin-commitlint": "^1.0.12",
"vue-cli-plugin-element": "^1.0.1",
"vue-template-compiler": "2.6.11",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,vue,ts}": [
"npm run lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/vue-cli-plugin-commitlint/lib/cz"
}
}
}