-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.7 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
{
"name": "@googlemaps-samples/js-api-samples",
"version": "1.0.0",
"type": "module",
"description": "Samples for the Google Maps JavaScript API.",
"scripts": {
"build-all": "npm run clean && npm run build-all-parallel && npm run generate-index",
"build-all-parallel": "bash samples/build-all.sh",
"clean": "bash samples/clean.sh",
"generate-index": "bash samples/generate-index.sh",
"check-and-fix": "echo eslint... && npx eslint --fix --quiet && echo prettier... && npx prettier -w --log-level warn . && echo tsc... && find ./ -name tsconfig.json -not -path '*/dist/*' -not -path '*/node_modules/*' -exec echo '{}' \\; -exec npx tsc --noEmit -p '{}' \\;"
},
"workspaces": [
"samples/*"
],
"devDependencies": {
"@eslint/css": "^1.4.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.1",
"@eslint/markdown": "^8.0.3",
"@playwright/test": "^1.62.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/google.maps": "^3.65.5",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.3",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.2"
},
"dependencies": {
"@deck.gl/core": "^9.3.10",
"@deck.gl/geo-layers": "^9.3.10",
"@deck.gl/google-maps": "^9.3.10",
"@deck.gl/layers": "^9.3.10",
"@googlemaps/extended-component-library": "^0.6.15",
"@loaders.gl/kml": "^4.4.4",
"@vis.gl/react-google-maps": "1.9.0",
"dotenv": "^17.4.2",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"overrides": {
"fast-xml-parser": "5.7.1",
"@xmldom/xmldom": "^0.9.10"
}
}