forked from visgl/react-map-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "react-map-gl-monorepo",
"description": "React components for MapLibre GL JS and Mapbox GL JS",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/visgl/react-map-gl.git"
},
"license": "MIT",
"type": "module",
"workspaces": [
"modules/*"
],
"scripts": {
"bootstrap": "yarn && ocular-bootstrap && npm run build",
"build": "ocular-clean && ocular-build",
"lint": "ocular-lint",
"publish-beta": "ocular-publish version-only-beta",
"publish-prod": "ocular-publish version-only-prod",
"test": "ocular-test",
"test-fast": "ocular-build && ocular-test node",
"metrics": "ocular-metrics",
"update-release-branch": "scripts/update-release-branch.sh"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^16.0.0",
"@vis.gl/dev-tools": "1.0.0-alpha.21",
"@vis.gl/ts-plugins": "1.0.0-alpha.21",
"mapbox-gl-v1": "npm:[email protected]",
"mapbox-gl-v3": "npm:[email protected]",
"pre-commit": "^1.2.2",
"puppeteer": "^22.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.0.0"
},
"pre-commit": [
"test-fast"
],
"volta": {
"node": "18.20.5",
"yarn": "1.22.22"
}
}