-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
101 lines (101 loc) · 2.67 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
{
"name": "dumi-theme-antd",
"version": "0.4.2",
"description": "Ant Design 5.0 官网风格类似的 dumi2 主题插件",
"keywords": [
"dumi",
"dumi-theme",
"antd"
],
"homepage": "https://kuangpf.com/dumi-theme-antd",
"repository": {
"type": "git",
"url": "https://github.com/KuangPF/dumi-theme-antd"
},
"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": {
"*.{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.20.0",
"@ant-design/icons": "5.3.6",
"@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",
"dayjs": "1.11.7",
"lodash.clonedeep": "4.5.0",
"prism-react-renderer": "^2.3.1",
"rc-drawer": "6.2.0",
"rc-footer": "0.6.8",
"rc-util": "5.41.0",
"react-intersection-observer": "^9.8.2"
},
"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",
"@types/react": "~18.0.0",
"@utopia/eslint-config-react": "^0.0.13",
"@utopia/prettier-config-base": "^0.0.13",
"cross-env": "^7.0.3",
"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"
},
"peerDependencies": {
"antd": "~5.17.0",
"dumi": "~2.3.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"authors": [
"KuangPF"
]
}