-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
98 lines (98 loc) · 2.49 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
{
"name": "antd-token-previewer",
"version": "3.0.0-alpha.0",
"description": "Ant Design token previewer",
"keywords": [
"react",
"antd",
"ant-design"
],
"main": "./lib/index",
"module": "./es/index",
"files": [
"es",
"lib"
],
"homepage": "https://ant-design.github.io/antd-token-previewer/previewer",
"repository": {
"type": "git",
"url": "[email protected]:ant-design/antd-token-previewer.git"
},
"bugs": {
"url": "https://github.com/ant-design/antd-token-previewer/issues"
},
"sideEffects": [
"*.css"
],
"license": "MIT",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:preview": "PREVIEW=1 dumi build",
"docs:deploy": "npm run docs:build && npm run gh-pages",
"compile": "father build",
"gh-pages": "gh-pages -d .doc",
"prepublishOnly": "npm run compile && np --yolo --no-publish && npm run docs:deploy",
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
"test": "umi-test",
"coverage": "umi-test --coverage",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/colors": "^6",
"@ant-design/cssinjs": "^2.0.0-alpha.3",
"@ant-design/icons": "^5.2.5",
"@arvinxu/layout-kit": "^1",
"@babel/runtime": "^7",
"@ctrl/tinycolor": "^3.6.0",
"classnames": "^2.3.1",
"rc-util": "^5.21.5",
"react-colorful": "^5.5.1",
"reactflow": "^11.8.1",
"use-debouncy": "~4.3.0",
"vanilla-jsoneditor": "^0.16.1"
},
"devDependencies": {
"@ant-design/compatible": "^5.1.2",
"@rc-component/father-plugin": "^1.0.2",
"@testing-library/react": "^13",
"@types/classnames": "^2.2.9",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/tinycolor2": "^1.4.3",
"@umijs/fabric": "^3.0.0",
"antd": "^5.10.1",
"coveralls": "^3.0.6",
"cross-env": "^7.0.2",
"dumi": "^2.0.9",
"eslint": "^7.0.0",
"father": "^4",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"jest": "^28.1.0",
"lint-staged": "^13.0.3",
"np": "^7.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^16.0.0",
"typescript": "^5.0.2",
"umi-test": "^1.9.7"
},
"peerDependencies": {
"antd": "^5.5.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"cnpm": {
"mode": "npm"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,md,json}": [
"prettier --write",
"git add"
]
}
}