-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.27 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
{
"name": "web",
"version": "0.0.1",
"private": true,
"scripts": {
"bootstrap": "yarn || npm i",
"serve": "vue-cli-service serve",
"release": "npm run bootstrap && vue-cli-service build --mode release",
"build": "npm run bootstrap && vue-cli-service build --mode production",
"lint": "vue-cli-service lint",
"inspect": "vue-cli-service inspect",
"new": "plop",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@const-an/helper-core": "^0.0.9",
"@const-an/regexp": "^0.0.9",
"axios": "0.19.0",
"core-js": "^3.3.2",
"crypto-js": "^3.1.9-1",
"element-ui": "2.13.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"screenfull": "^5.0.0",
"vue": "^2.6.11",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "9.0.2",
"vue-router": "^3.1.3",
"vuex": "^3.0.1",
"vuex-class": "^0.3.2",
"vxe-table": "^2.9.13",
"xe-utils": "^2.4.8"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/lodash": "^4.14.155",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.5.3",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-router": "^4.0.0",
"@vue/cli-plugin-typescript": "^4.0.0",
"@vue/cli-plugin-vuex": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"commitizen": "^4.2.4",
"compression-webpack-plugin": "^3.0.1",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^9.4.2",
"node-sass": "^4.12.0",
"plop": "^2.5.3",
"prettier": "^2.3.1",
"sass-loader": "^8.0.0",
"typescript": "~3.7.3",
"vue-skeleton-webpack-plugin": "^1.2.2",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}