This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.41 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
{
"private": true,
"name": "dipper",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"start": "dumi dev",
"watch": "lerna run watch",
"lint": "yarn run lint:ts && yarn run lint:style",
"lint:ts": "eslint packages docs --ext .ts,.tsx",
"lint:style": "stylelint \"packages/**/*.less\"",
"lint-fix": "eslint packages docs --fix --ext .ts,.tsx --format=pretty && stylelint --fix \"packages/**/*.less\"",
"prettier": "lerna run prettier",
"link": "lerna exec -- yarn link",
"unlink": "lerna exec -- yarn unlink",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"deploy": "yarn run docs:build && yarn run docs:deploy",
"build": "lerna run build",
"package-version": "lerna version --force-publish --conventional-commits",
"package-preversion": "lerna version --force-publish --conventional-prerelease",
"prepublishOnly": "yarn build",
"package-publish": "lerna publish from-package --force-publish && lerna run sync",
"package-betapublish": "lerna publish from-package --force-publish --dist-tag beta && lerna run sync",
"sync": "lerna run sync"
},
"dependencies": {
"@antv/g2plot": "^2.3.39",
"@antv/l7": "^2.7.30",
"@antv/l7-draw": "^2.4.20",
"@antv/l7-react": "^2.3.9",
"@antv/larkmap": "^0.0.1-alpha.3",
"antd": "^4.16.13",
"antd-mobile": "^5.0.0-rc.25"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/react": "^16.14.2",
"@umijs/fabric": "^2.10.1",
"@umijs/plugin-analytics": "^0.2.2",
"@umijs/test": "^3.0.5",
"dumi": "^1.0.17",
"dumi-theme-mobile": "^1.1.21",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.7",
"mockjs": "^1.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typedoc": "^0.22.12"
},
"peerDependencies": {
"antd": "^4.16.13",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"lint-staged": {
"*.less": "stylelint --fix",
"*.{ts,tsx}": "eslint --fix",
"*.{less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
}
}