-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.01 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
106
107
108
109
{
"name": "@kafudev/ui-kit",
"version": "1.4.4",
"keywords": [
"ui-kit",
"kafudev",
"ant-design",
"ant-design-pro"
],
"homepage": "https://kafudev.github.io/ui-kit",
"bugs": "https://github.com/kafudev/ui-kit/issues",
"repository": {
"type": "git",
"url": "https://github.com/kafudev/ui-kit"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run build && npm run docs:build && npm run docs:deploy && npm run release-ci",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"prepublishOnly": "npm run build",
"release": "dotenv -- release-it ",
"release-ci": "dotenv -- release-it --ci"
},
"main": "es/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"lib",
"es",
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"peerDependencies": {
"@ant-design/icons": "^4.0.0",
"@ant-design/pro-card": "^1.0.0",
"@ant-design/pro-descriptions": "^1.0.0",
"@ant-design/pro-field": "^1.0.0",
"@ant-design/pro-form": "^1.0.0",
"@ant-design/pro-layout": "^6.0.0",
"@ant-design/pro-list": "^1.0.0",
"@ant-design/pro-table": "^2.0.0",
"@ant-design/pro-utils": "^1.0.0",
"antd": "^4.0.0",
"react": "^16.12.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@editorjs/editorjs": "^2.25.0",
"@wangeditor/editor": "^5.1.1",
"@wangeditor/editor-for-react": "^1.0.4",
"react-copy-to-clipboard": "^5.1.0",
"umi": "^3.5.26",
"umi-request": "^1.4.0"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-card": "^1.20.11",
"@ant-design/pro-descriptions": "^1.11.7",
"@ant-design/pro-field": "^1.34.18",
"@ant-design/pro-form": "^1.70.0",
"@ant-design/pro-layout": "^6.38.10",
"@ant-design/pro-list": "^1.21.70",
"@ant-design/pro-table": "^2.77.0",
"@ant-design/pro-utils": "^1.42.3",
"@release-it/conventional-changelog": "^5.0.0",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.182",
"@umijs/fabric": "^2.8.1",
"@umijs/test": "^3.0.5",
"antd": "^4.21.5",
"auto-changelog": "^2.4.0",
"dotenv-cli": "^5.1.0",
"dumi": "^1.1.42",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.7.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"release-it": "^15.0.0",
"yorkie": "^2.0.0"
}
}