-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.71 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": "materials-react",
"license": "MIT",
"version": "0.2.15",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "node ./scripts/gh-pages-publish.js",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"postpublish": "node ./scripts/notice.js",
"block": "node ./scripts/precommit.js",
"update-block": "node ./scripts/update-block.js"
},
"main": "dist/lib/index.js",
"module": "dist/lib/index.esm.js",
"typings": "dist/lib/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-form": "1.49.0",
"@ant-design/pro-table": "^2.57.2",
"ahooks": "^2.10.12",
"antd": "^4.16.13",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@types/lodash": "^4.14.177",
"@umijs/test": "^3.5.20",
"axios": "^0.24.0",
"chalk": "4.1.1",
"dumi": "^1.1.32",
"father-build": "^1.20.4",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"gh-pages": "^3.2.3",
"inquirer": "^8.2.0",
"lint-staged": "^12.0.2",
"node-server-screenshot": "^0.2.4",
"prettier": "^2.4.1",
"shelljs": "^0.8.4",
"yorkie": "^2.0.0"
}
}