This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
141 lines (141 loc) · 4.15 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"private": false,
"name": "super-antd",
"description": "super-antd 是一个简单且数据驱动友好的 React 组件库。",
"license": "MIT",
"version": "0.3.0",
"author": {
"name": "dream2023",
"email": "1098626505@qq.com"
},
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"build": "father-build && node scripts/replaceDeclaration.js && webpack-cli",
"replace-version": "node scripts/replaceVersion.js",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx --fix --format=pretty ./src && npm run lint:prettier",
"lint:all": "yarn eslint --ext .js,.jsx,.ts,.tsx --format=pretty ./src ",
"lint:prettier": "npm run prettier && git diff && prettier --version && prettier --check \"packages/**/**.{js,jsx,tsx,ts,less,md,json}\" --end-of-line auto",
"prettier": "prettier --write \"{src,docs,tests}/**/**.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test --watch",
"test:coverage": "umi-test --coverage",
"spell-check:all": "cspell \"{src,docs,tests}/**/*.{txt,ts,tsx,js,json,md}\"",
"ci": "yarn tsc && yarn lint:all && yarn spell-check:all && umi-test --all",
"tsc": "node_modules/@umijs/fabric/node_modules/.bin/tsc --noEmit",
"update:deps": "yarn upgrade-interactive --latest"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"sideEffects": [
"*.less"
],
"keywords": [
"antd",
"admin",
"ant-design",
"ant-design-pro",
"pro-components",
"super-antd"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com/"
},
"homepage": "https://github.com/dream2023/super-antd",
"bugs": "https://github.com/dream2023/super-antd/issues",
"repository": {
"type": "git",
"url": "https://github.com/dream2023/super-antd"
},
"files": [
"lib",
"es",
"dist"
],
"gitHooks": {
"pre-commit": "npm run tsc && yarn umi-test && lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,less,md,json}": [
"prettier --write",
"cspell"
],
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix --format=pretty"
]
},
"peerDependencies": {
"antd": "4.x",
"react": "^16.8.6 || ^17.0"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@dream2023/data-mapping": "^2.1.1",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.set": "^4.3.6",
"@uiw/react-amap": "^2.2.6",
"@uiw/react-baidu-map": "^2.0.4",
"@uiw/react-textarea-code-editor": "^1.4.13",
"ahooks": "^2.10.9",
"antd-image-cropper": "^0.4.0",
"bytes": "^3.1.0",
"classnames": "^2.3.1",
"dayjs": "^1.10.4",
"lodash.debounce": "^4.0.8",
"lodash.set": "^4.3.2",
"map-obj": "^4.2.1",
"react-router-dom": "^5.2.1",
"react-schema-render": "^0.0.5",
"react-use": "^17.2.4",
"rfdc": "^1.3.0",
"tiny-warning": "^1.0.3",
"wangeditor-for-react": "^1.5.3",
"xss": "^1.0.9"
},
"browserslist": [
"last 2 versions",
"Firefox ESR",
"> 1%",
"ie >= 11"
],
"devDependencies": {
"@ant-design/pro-form": "^1.37.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.2.1",
"@types/bytes": "^3.1.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.2",
"@umijs/fabric": "^2.5.10",
"@umijs/test": "^3.5.17",
"antd": "^4.16.13",
"axios": "^0.21.1",
"babel-plugin-import": "^1.13.3",
"babel-plugin-module-resolver": "^4.1.0",
"cspell": "^5.8.2",
"css-loader": "^6.2.0",
"dumi": "^1.1.25",
"father-build": "^1.19.8",
"less-loader": "^10.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.22",
"prettier-plugin-sorted": "^2.0.0",
"prettier-plugin-style-order": "^0.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-quill": "^2.0.0-beta.2",
"style-loader": "^3.2.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"xhr-mock": "^2.5.1",
"yorkie": "^2.0.0"
}
}