-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.51 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
{
"name": "@antv/l7-extension",
"homepage": "https://antv.vision/l7-g-plugin/",
"repository": "https://github.com/antvis/L7Extension.git",
"scripts": {
"build": "lerna run build",
"dev": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"docs:publish": "npm run docs:build && npm run docs:deploy",
"doctor": "father doctor",
"lint": "npm run lint:es && npm run lint:css",
"lint:css": "stylelint \"{packages,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{packages,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && dumi setup",
"prepublishOnly": "father doctor && npm run build",
"start": "npm run dev"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@antv/g": "^5.18.24",
"@antv/g-canvas": "^1.11.26",
"@antv/g-canvaskit": "^0.10.26",
"@antv/g-svg": "^1.10.25",
"@antv/g-webgl": "^1.9.36",
"@antv/g-webgpu": "^1.9.36",
"@antv/l7": "^2.21.0",
"@antv/larkmap": "^1.4.13",
"@antv/util": "^3.3.7",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@turf/helpers": "^6.5.0",
"@turf/simplify": "^6.5.0",
"@types/geobuf": "^3.0.1",
"@types/leaflet": "^1.9.8",
"@types/lodash-es": "^4.17.12",
"@types/pbf": "^3.0.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/stats.js": "^0.17.3",
"@umijs/lint": "^4.0.0",
"antd": "^5.2.2",
"dumi": "^2.2.13",
"eslint": "^8.23.0",
"eventemitter3": "^5.0.1",
"father": "^4.1.0",
"geobuf": "^3.0.2",
"geojson2svg": "^1.3.3",
"gh-pages": "^6.1.1",
"gl-matrix": "^3.4.3",
"husky": "^8.0.1",
"leaflet": "~1.8.0",
"lerna": "^4.0.0",
"lil-gui": "^0.19.1",
"lint-staged": "^13.0.3",
"lodash-es": "^4.17.21",
"parse-svg": "^0.0.0",
"pbf": "^3.2.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"stats.js": "^0.17.0",
"stylelint": "^14.9.1",
"tokml": "^0.4.0",
"topojson": "^3.0.2"
}
}