-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.18 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
{
"name": "vcform",
"version": "1.3.1",
"description": "可配置的通用表单组件",
"main": "dist/vcform.js",
"scripts": {
"build": "webpack --config build/webpack.config.js",
"prepublishOnly": "npm run build",
"beta": "HUSKY_SKIP_HOOKS=1 standard-version $([ -e CHANGELOG.md ] && echo '--prerelease beta' || echo '--release-as 1.1.0-beta.0') && git push --follow-tags origin",
"release": "HUSKY_SKIP_HOOKS=1 standard-version $([ -e CHANGELOG.md ] && echo '' || echo '--first-release') --skip.tag && git push origin",
"tag": "standard-version --skip.bump --skip.changelog --skip.commit && git push origin --tags",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "[email protected]:game-fed/form.git"
},
"keywords": [
"form",
"vue",
"element-ui"
],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime-corejs3": "^7.7.7",
"@tinymce/tinymce-vue": "^3.0.1",
"axios": "^0.19.0",
"big.js": "^5.2.2",
"file-loader": "^5.0.2",
"lodash-es": "^4.17.15",
"moment": "^2.24.0",
"qs": "^6.9.4",
"tinymce": "^5.4.1",
"tslib": "^2.0.0",
"xlsx": "^0.16.3"
},
"peerDependencies": {
"element-ui": "^2.13.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.3",
"css-loader": "^3.4.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.8.0",
"husky": "^4.3.8",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": "^10.5.4",
"postcss-loader": "^3.0.0",
"prettier": "^2.2.1",
"progress-bar-webpack-plugin": "^1.12.1",
"standard-version": "^9.0.0",
"style-loader": "^1.1.2",
"stylelint": "^13.12.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.9",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,vue,html}": "eslint",
"*.{css,less,vue,html}": "stylelint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}