-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "szdt-admin-components",
"version": "1.0.57",
"homepage": "https://mkgrow.github.io/szdt-admin-components/",
"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,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"lint-staged": "lint-staged",
"release": "npm version patch --no-commit-hooks -m \"v%s\""
},
"files": [
"dist"
],
"main": "dist/esm/index.d.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.5.0",
"antd": "4.20.0",
"babel-plugin-import": "^1.13.6",
"cron-builder-ts": "^1.0.5",
"cronstrue": "^2.22.0",
"react": "^18.0.0",
"umi-request": "^1.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^13.0.0",
"@types/jest": "^27.0.3",
"@umijs/fabric": "^2.8.1",
"@umijs/test": "^3.0.5",
"@umijs/yorkie": "^2.0.5",
"dumi": "^1.1.0",
"father": "^4.0.0-rc.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1"
}
}