-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.02 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.02 KB
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
{
"name": "@lands-pro/antd-react-components",
"version": "1.0.5",
"description": "Lands Pro-后台开发常用的react组件",
"keywords": [
"antd",
"procomponents",
"react",
"lands-pro",
"lands"
],
"license": "MIT",
"author": {
"name": "兰涛",
"email": "550947002@qq.com"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"dev": "dumi dev",
"docs:build": "dumi build",
"doctor": "father doctor",
"lint": "npm run lint:es && npm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install",
"prepublishOnly": "father doctor && npm run build",
"start": "npm run dev "
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/use-emotion-css": "1.0.4",
"@babel/runtime": "7.23.6",
"@types/crypto-js": "4.2.1",
"@types/react-beautiful-dnd": "13.1.8",
"@umijs/route-utils": "4.0.1",
"classnames": "2.5.0",
"crypto-js": "4.2.0",
"dumi": "2.2.16",
"dumi-theme-antd-style": "0.27.4",
"eventemitter3": "5.0.1",
"file-saver": "2.0.5",
"js-base64": "3.7.5",
"react-beautiful-dnd": "13.1.1",
"react-router": "6.21.1",
"uuid": "9.0.1"
},
"devDependencies": {
"@ant-design/icons": "5.2.6",
"@ant-design/pro-components": "2.6.43",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/file-saver": "2.0.7",
"@types/lodash": "4.14.202",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@umijs/fabric": "2.14.1",
"@umijs/lint": "4.0.90",
"antd": "5.12.5",
"autoprefixer": "10.4.19",
"dayjs": "1.11.10",
"eslint": "8.56.0",
"father": "4.3.8",
"husky": "8.0.3",
"less": "4.2.0",
"lint-staged": "13.3.0",
"lodash": "4.17.21",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
"postcss-less": "6.0.0",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-packagejson": "2.4.8",
"react": "18.2.0",
"react-activation": "0.12.4",
"react-dom": "18.2.0",
"react-json-view": "1.21.3",
"stream-http": "3.2.0",
"stylelint": "15.11.0"
},
"peerDependencies": {
"@ant-design/icons": "^5.0.1",
"@ant-design/pro-components": "^2.6.3",
"@types/lodash": "^4.0.0",
"antd": "^5.6.0",
"dayjs": "^1.11.7",
"lodash": "^4.0.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"publishConfig": {
"access": "public"
}
}