forked from KuangPF/dumi-theme-antd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@ahooks.js/dumi-theme-antd",
"version": "0.1.3",
"description": "Ant Design 5.0 官网风格类似的 dumi2 主题插件",
"keywords": [
"dumi",
"dumi-theme",
"antd",
"ahooks"
],
"homepage": "https://ahooks.js.org",
"repository": {
"type": "git",
"url": "https://github.com/ahooksjs/dumi-theme-antd.git"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "father build",
"build:docs": "cross-env APP_ROOT=example dumi build",
"build:site": "cross-env APP_ROOT=example DEPLOY_SITE=local dumi build",
"site": "node app.js",
"dev": "father dev",
"docs": "cross-env APP_ROOT=example dumi dev",
"lint": "pnpm run lint:es && pnpm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky install && father link-dev-theme",
"prepublishOnly": "father doctor && pnpm run build"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/cssinjs": "1.16.2",
"@ant-design/icons": "5.1.4",
"@babel/runtime": "7.22.3",
"@ctrl/tinycolor": "3.6.0",
"@emotion/css": "11.11.2",
"@emotion/react": "11.11.0",
"@emotion/server": "11.11.0",
"antd-token-previewer": "2.0.0-alpha.6",
"classnames": "2.3.2",
"crypto": "1.0.1",
"dayjs": "1.11.7",
"lodash.clonedeep": "4.5.0",
"rc-drawer": "6.2.0",
"rc-footer": "0.6.8",
"rc-util": "5.33.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@emotion/babel-preset-css-prop": "11.10.0",
"@types/lodash": "^4.14.195",
"@utopia/eslint-config-react": "^0.0.13",
"@utopia/prettier-config-base": "^0.0.13",
"antd": "^5.7.0",
"cross-env": "^7.0.3",
"dumi": "^2.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"express": "^4.18.2",
"father": "^4.2.2",
"father-plugin-dumi-theme": "1.0.0-rc.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.2.5",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependencies": {
"antd": "^5.7.0",
"dumi": "^2.2.17",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"authors": [
"KuangPF",
"liuyib<https://github.com/liuyib>"
]
}