-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "antd-ui-template",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "vue-cli-service serve --open",
"build": "yarn lint && vue-cli-service build",
"lt": "bash scripts/release.sh && vue-cli-service build --mode staging",
"lint": "vue-cli-service lint --mode production"
},
"dependencies": {
"@xiyun/ant-design-ui": "^1.4.13",
"@xiyun/utils": "^1.2.40",
"ant-design-vue": "^1.4.12",
"core-js": "^3.6.4",
"vue": "^2.6.11",
"vue-router": "^3.1.6",
"vuex": "^3.1.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-airbnb": "^5.0.2",
"@xiyun/vue-route-webpack-plugin": "^2.1.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.2.2",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lint-staged": "^10.0.9",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E GIT_PARAMS"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"vue-cli-service lint --mode production"
]
}
}