-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.42 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": "@components/template",
"version": "1.0.1",
"description": "React components for Vortex",
"keywords": [
"react",
"react-component"
],
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"compile": "gulp compile",
"lint": "npm run lint:script && npm run lint:style",
"lint:script": "eslint components --ext .js,.jsx",
"lint:style": "stylelint components/**/*.less --syntax less",
"fix": "eslint --fix --ext .js,.jsx components && npm run style:fix",
"style:fix": "stylelint components/**/*.less --syntax less --fix",
"prettier": "prettier -c --write **/*",
"pretty-quick": "pretty-quick",
"pub": "npm publish --access=public",
"bump": "gulp bump --prerelease",
"release": "release-it --no-npm.publish",
"version": "npm run changelog && git add CHANGELOG.md",
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0"
},
"license": "ISC",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
}
},
"changelog": {
"emojis": true,
"authorName": true
},
"dependencies": {},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"devDependencies": {
"@ant-design/icons": "4.7.0",
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/runtime": "^7.6.3",
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@umijs/plugin-locale": "^0.10.8",
"ahooks": "^3.1.5",
"antd": "4.20.5",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.3",
"classnames": "^2.2.6",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-custom-config": "^0.3.1",
"dumi": "^1.0.10",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-bump": "^3.1.3",
"gulp-clean": "^0.4.0",
"gulp-less": "5.0.0",
"gulp-sourcemaps": "^2.6.5",
"husky": "^4.0.7",
"less": "^3.10.3",
"less-plugin-autoprefix": "^2.0.0",
"less-plugin-npm-import": "^2.1.0",
"lodash": "^4.17.21",
"merge2": "^1.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"prop-types": "^15.8.1",
"release-it": "^14.6.1",
"rimraf": "^3.0.0",
"stylelint": "11.0.0",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^19.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"stylelint-order": "^3.0.0",
"through2": "^3.0.1"
}
}