-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2 KB
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
{
"name": "@maptool/core",
"version": "0.1.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"peerDependencies": {
"@chakra-ui/react": "^3.0.0",
"@deck.gl/core": "^9.0.0",
"@deck.gl/geo-layers": "^9.0.0",
"@deck.gl/layers": "^9.0.0",
"@deck.gl/react": "^9.0.0",
"@tanstack/react-query": "^5.0.0",
"maplibre-gl": "^4.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"stac-react": "^0.3.0"
},
"dependencies": {
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"pmtiles": "^4.4.0",
"recharts": "^3.8.0"
},
"devDependencies": {
"@chakra-ui/react": "^3.0.0",
"@deck.gl/core": "^9.2.11",
"@deck.gl/geo-layers": "^9.2.11",
"@deck.gl/layers": "^9.2.11",
"@deck.gl/react": "^9.2.11",
"@emotion/react": "^11.14.0",
"@playwright/test": "^1.48.0",
"@tanstack/react-query": "^5.90.21",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/d3-format": "^3.0.4",
"@types/d3-scale": "^4.0.9",
"@types/geojson": "^7946.0.16",
"@types/node": "^24.4.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^22.1.0",
"playwright": "^1.48.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.5.0",
"vite": "^4.5.14",
"vitest": "^0.34.6"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "tsc --noEmit",
"preview": "vite preview",
"serve": "node serve-apps.mjs",
"serve:all": "node serve-apps.mjs --all"
}
}