-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.49 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
{
"private": false,
"name": "@hfuuss/antd-plus",
"version": "0.0.6",
"scripts": {
"father-build": "father-build",
"init": "rm -rf node_modules && npm install",
"start": "dumi dev",
"docs:build": "dumi build",
"build": "node ./scripts/clean-old-build.js && father-build && npm run compile && node ./scripts/build-wind-up.js",
"compile": "tsc --declarationDir ./lib && tsc --declarationDir ./es",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./dist/index.d.ts",
"gitHooks": {
"precommit": "lint-staged"
},
"files": [
"dist",
"lib",
"es",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hfuuss/antd-plus.git"
},
"homepage": "https://github.com//hfuuss/antd-plus",
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.1.0",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.0.5",
"antd": "^4.1.5",
"del": "^5.1.0",
"dumi": "^1.0.6",
"father-build": "^1.17.2",
"lint-staged": "^10.0.7",
"now": "^18.0.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"yorkie": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"typescript": "^3.8.3"
}
}