-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 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
{
"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.1.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@playwright/test": "^1.60.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/google.maps": "^3.64.0",
"@types/node": "^25.7.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.13"
},
"dependencies": {
"dotenv": "^17.4.2"
},
"overrides": {
"fast-xml-parser": "5.7.1"
}
}