-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.4 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
{
"name": "dumi-theme-nocobase",
"version": "0.2.28",
"description": "",
"keywords": [
"dumi",
"dumi-theme",
"antd"
],
"homepage": "https://nocobase.github.io/dumi-theme-nocobase",
"repository": {
"type": "git",
"url": "https://github.com/nocobase/dumi-theme-nocobase"
},
"license": "MIT",
"main": "index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"index.js"
],
"scripts": {
"build": "father build",
"build:docs": "cross-env APP_ROOT=example dumi build",
"dev": "father dev",
"docs": "cross-env APP_ROOT=example dumi dev",
"lint": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && father link-dev-theme && yarn cross-env APP_ROOT=example dumi setup",
"prepublishOnly": "father doctor && npm run build"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"eslint --fix"
]
},
"dependencies": {
"@ant-design/icons": "^5.1.3",
"@babel/runtime": "^7.22.3",
"@ctrl/tinycolor": "^3.6.0",
"@emotion/react": "^11.11.0",
"antd": "^5.5.1",
"antd-token-previewer": "^2.0.0-alpha.6",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"rc-drawer": "^6.1.2"
},
"devDependencies": {
"prettier": "3.1.0",
"eslint": "8.55.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-import": "2.29.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@emotion/babel-preset-css-prop": "11.10.0",
"@types/lodash": "^4.14.191",
"@utopia/eslint-config-react": "^0.0.9",
"@utopia/prettier-config-base": "^0.0.9",
"cross-env": "^7.0.3",
"dumi": "2.2.14",
"father": "^4.3.7",
"father-plugin-dumi-theme": "^1.0.0-rc.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "4.x"
},
"peerDependencies": {
"dumi": "^2.2.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"authors": [
"KuangPF",
"dream2023"
]
}