forked from neoddish/antv-site-demo-rc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.28 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
{
"name": "antv-site-demo-rc",
"version": "0.1.0-alpha.5",
"description": "Encapsulation for components of demos in AntV site.",
"main": "./lib/index",
"module": "./es/index",
"files": [
"es",
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neoddish/antv-site-demo-rc.git"
},
"author": "neoddish",
"license": "MIT",
"bugs": {
"url": "https://github.com/neoddish/antv-site-demo-rc/issues"
},
"homepage": "https://neoddish.github.io/antv-site-demo-rc",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d .doc",
"compile": "father build",
"gh-pages": "npm run docs:build && father doc deploy",
"prepublishOnly": "npm run compile && np --yolo --no-publish && npm run gh-pages",
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"pretty-quick": "pretty-quick",
"test": "father test",
"coverage": "father test --coverage"
},
"dependencies": {
"@babel/runtime": "^7.11.1",
"classnames": "^2.2.1"
},
"devDependencies": {
"@antv/antv-spec": "0.1.0-alpha.4",
"@antv/g2plot": "^2.3.39",
"@antv/s2": "^0.2.5",
"@types/classnames": "^2.2.9",
"@types/react": "^17.0.13",
"@types/react-dom": "^16.9.0",
"@umijs/fabric": "^2.0.8",
"antd": "^4.16.13",
"coveralls": "^3.0.6",
"cross-env": "^7.0.2",
"dumi": "^1.1.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.4.0",
"eslint": "^7.0.0",
"father": "^2.13.4",
"father-build": "^1.18.6",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"less": "^3.10.3",
"np": "^7.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-json-view": "^1.21.3",
"react-test-renderer": "^16.0.0",
"typescript": "^4.0.5"
},
"peerDependencies": {
"@antv/antv-spec": ">=0.1.0-alpha.4",
"@antv/s2": ">=0.2.5",
"antd": ">=4.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"react-json-view": ">=1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"cnpm": {
"mode": "npm"
},
"tnpm": {
"mode": "npm"
}
}