forked from developmentseed/lonboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"comment": {
"maplibre": "Upgrading maplibre to v4 broke the basemap in static HTML exports."
},
"dependencies": {
"@anywidget/react": "^0.0.4",
"@babel/runtime": "^7.24.0",
"@deck.gl/core": "^8.9.35",
"@deck.gl/extensions": "^8.9.35",
"@deck.gl/layers": "^8.9.35",
"@deck.gl/react": "^8.9.35",
"@geoarrow/deck.gl-layers": "^0.3.0-beta.15",
"apache-arrow": "^15.0.1",
"maplibre-gl": "^3.6.2",
"parquet-wasm": "0.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.7",
"uuid": "^9.0.1"
},
"type": "module",
"devDependencies": {
"@anywidget/types": "^0.1.5",
"@jupyter-widgets/base": "^6.0.7",
"@types/react": "^18.2.66",
"@types/uuid": "^9.0.8",
"esbuild": "^0.20.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
},
"scripts": {
"build": "node ./build.mjs",
"build:watch": "nodemon --watch src/ --exec \"npm run build\" --ext js,json,ts,tsx,css",
"fmt:check": "prettier './src/**/*.{ts,tsx,css}' --check",
"fmt": "prettier './src/**/*.{ts,tsx,css}' --write",
"test": "vitest run",
"typecheck": "tsc --build"
},
"resolutions": {
"@deck.gl/core": "8.9.30",
"@deck.gl/layers": "8.9.30",
"@deck.gl/react": "8.9.30"
},
"volta": {
"node": "18.18.2",
"npm": "10.2.3"
}
}