-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 2.73 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": "lighting-design",
"version": "2.1.35",
"description": "🎨 Lighting Design 是一款使用 TypeScript + React 编写的实用业务组件库。",
"keywords": [
"lighting-design",
"light-design",
"lighting",
"antd",
"antd-pro",
"lightd",
"react",
"react-ui",
"react-components"
],
"homepage": "https://llq0802.github.io/lighting-design/",
"bugs": "https://llq0802.github.io/lighting-design/",
"repository": {
"type": "git",
"url": "https://github.com/llq0802/lighting-design"
},
"license": "MIT",
"author": "李岚清 llq0802 <[email protected]>",
"sideEffects": [
"*.less"
],
"main": "./dist/lib/index.js",
"module": "./dist/es/index.js",
"types": "./dist/es/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"dev": "dumi dev --port=5173",
"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 && dumi setup",
"start": "npm run dev"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [],
"*.{js,jsx}": [],
"*.{ts,tsx}": []
},
"dependencies": {
"ahooks": "^3.7.11",
"antd-img-crop": "^4.21.0",
"compare-versions": "^6.1.0",
"echarts": "^5.5.0",
"fast-deep-equal": "^3.1.3",
"lodash-es": "^4.17.21",
"rc-use-hooks": "^2.0.7",
"react-color": "^2.19.3",
"react-draggable": "^4.4.5",
"rfdc": "^1.3.0",
"size-sensor": "^1.0.2",
"xlsx-js-style": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@ebay/nice-modal-react": "^1.2.13",
"@types/lodash": "^4.14.202",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.0.0",
"@umijs/lint": "^4.0.0",
"antd": "^5.18.3",
"better-mock": "^0.3.6",
"dumi": "^2.2.17",
"eslint": "^8.23.0",
"father": "4.3.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"localforage": "^1.10.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-infinite-scroll-component": "^6.1.0",
"stylelint": "^14.9.1",
"zxcvbn": "^4.4.2"
},
"peerDependencies": {
"antd": ">=5.0.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}