forked from damonyoungcc/ant-design-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"private": true,
"name": "@yang/ant-design-plus",
"version": "1.0.0",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"prepublishOnly": "npm run build"
},
"typings": "es/index.d.ts",
"types": "es/index.d.ts",
"files": [
"es",
"lib"
],
"main": "./lib/index",
"module": "./es/index",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"ahooks": "^3.1.5",
"lodash": "^4.17.21",
"rc-resize-observer": "^1.2.0",
"react": "^16.12.0 || ^17.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@umijs/fabric": "^2.8.1",
"@umijs/plugin-antd": "^0.15.0",
"@umijs/plugin-antd-mobile": "^1.2.0",
"@umijs/plugin-locale": "^0.15.1",
"@umijs/test": "^3.0.5",
"babel-plugin-import": "^1.13.3",
"dumi": "^1.1.39",
"dumi-theme-mobile": "^1.1.21",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"yorkie": "^2.0.0"
}
}