-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "chili-lib",
"version": "0.1.8",
"description": "基于antd封装的业务组件库和工具",
"keywords": [
"react",
"antd lib",
"chili-lib",
"react-component",
"antd component",
"component"
],
"homepage": "https://chili.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/poyiding/chili"
},
"files": [
"dist",
"lib",
"es"
],
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"build": "father-build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:w": "umi-test debounce.test",
"test:coverage": "umi-test --coverage",
"clean-demos": "node ./scripts/clean-build.js",
"eslint": "eslint --ext .tsx,.ts,.jsx --fix ./src -c .eslintrc.js"
},
"main": "lib/index.js",
"module": "es/index.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@ant-design/icons": "^4.3.0",
"@types/jest": "^26.0.4",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.0.5",
"del": "^5.1.0",
"dumi": "^1.0.35",
"father-build": "^1.17.2",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"react": "^16.13.1",
"antd": "^4.2.2",
"@ant-design/icons": "^4.3.0"
},
"license": "MIT",
"dependencies": {}
}