-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.59 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
{
"name": "@googlemaps-samples/js-api-samples",
"version": "1.0.0",
"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.3.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.0",
"@eslint/markdown": "^8.0.2",
"@playwright/test": "^1.60.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/google.maps": "^3.64.1",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.16"
},
"dependencies": {
"@deck.gl/core": "^9.3.4",
"@deck.gl/geo-layers": "^9.3.4",
"@deck.gl/google-maps": "^9.3.4",
"@deck.gl/layers": "^9.3.4",
"@loaders.gl/kml": "^4.4.3",
"@vis.gl/react-google-maps": "1.8.3",
"dotenv": "^17.4.2",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"overrides": {
"fast-xml-parser": "5.7.1"
}
}