-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
69 lines (69 loc) · 1.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
{
"name": "antv.vision",
"private": true,
"description": "Ant Visualization solution home page",
"version": "1.0.0",
"author": "AntV Team <[email protected]>",
"keywords": [
"dumi",
"antvis",
"antv"
],
"homepage": "https://antv.antgroup.com",
"repository": {
"type": "git",
"url": "https://github.com/antvis/antvis.github.io"
},
"bugs": {
"url": "https://github.com/antvis/antvis.github.io/issues"
},
"dependencies": {
"@ant-design/icons": "^4.8.3",
"@antv/dumi-theme-antv": "^0.5.2",
"@antv/g2plot": "^2.3.1",
"@antv/g6": "3.3.7",
"@antv/util": "^3.3.1",
"antd": "5.10.2",
"chroma-js": "^2.1.0",
"classnames": "^2.2.6",
"d3": "^7.8.5",
"dumi": "~2.2.1",
"gh-pages": "^3.1.0",
"husky": "^8.0.2",
"lodash": "^4.17.20",
"new-github-issue-url": "^1.0.0",
"prettier": "^2.0.0",
"pretty-quick": "^3.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-github-btn": "^1.4.0"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/d3": "^7.4.2",
"@types/lodash": "^4.14.189",
"@types/parse-github-url": "^1.0.0",
"@types/react": "^16.9.5",
"@types/react-github-button": "^0.1.0",
"@types/react-helmet": "^6.0.0"
},
"license": "MIT",
"scripts": {
"start": "npm run develop",
"build": "dumi build",
"dev": "dumi dev",
"deploy": " npm run build && npm run gh-pages",
"gh-pages": "gh-pages -d dist",
"copy-mirror-action": "mkdir -p public/.github/workflows && cp .github/workflows/mirror.yml public/.github/workflows",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,less}\"",
"pretty-quick": "pretty-quick",
"tsc": "tsc",
"serve": "dumi preview",
"type-check": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}