forked from googlemaps/js-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.88 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@googlemaps/js-samples",
"description": "Samples for Google Maps JavaScript",
"version": "2.1.4",
"keywords": [
"google",
"javascript",
"maps",
"samples"
],
"homepage": "https://github.com/googlemaps/js-samples#readme",
"bugs": {
"url": "https://github.com/googlemaps/js-samples/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/googlemaps/js-samples.git"
},
"files": [],
"license": "Apache-2.0",
"scripts": {
"build:eleventy": "eleventy --incremental",
"build:esbuild": "esbuild src/playground/index.ts src/playground/resizer.ts --splitting --target=es2020 --legal-comments=linked --bundle --format=esm --minify --outdir=dist",
"build:worker": "esbuild ./node_modules/playground-elements/playground-typescript-worker.js --platform=node --legal-comments=linked --bundle --minify --outfile=dist/playground-typescript-worker.js",
"build:tailwind": "tailwindcss -i ./src/playground/style.css -o ./dist/samples/playground.css --minify",
"build": "npm-run-all clean -p build:*",
"ci": "npm run build && npm run test",
"clean": "npx rimraf dist/*",
"clean:cache": "npx rimraf .cache/* ./parcel-cache/*",
"format": "eslint --fix samples/* src/*",
"lint": "eslint samples/* src/*",
"start": "npm-run-all clean -p watch:*",
"serve": "http-server dist --port 8080",
"test": "npm-run-all -s test:*",
"test:jest": "tsc --noEmit --skipLibCheck",
"test:playwright": "playwright test e2e",
"test:playwright:playground": "playwright test playground",
"test:playwright:playground:update-snapshots": "UPDATE_SNAPSHOTS_DIFFERENT=1 playwright test playground --workers 1",
"test:playwright:app": "playwright test app",
"watch:eleventy": "eleventy --serve --port 8080 --incremental",
"watch:esbuild": "esbuild src/playground/index.ts src/playground/resizer.ts --splitting --target=es2020 --legal-comments=linked --bundle --minify --format=esm --watch --outdir=dist",
"watch:tailwind": "npm run build:tailwind -- --watch",
"watch:worker": "npm run build:worker -- --watch"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@googlemaps/three": "^3.0.3",
"@playwright/test": "^1.40.1",
"@types/geojson": "^7946.0.10",
"@types/google.maps": "^3.53.5",
"@types/google.visualization": "0.0.73",
"@types/jest": "^29.5.6",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.62.0",
"buffer": "^6.0.3",
"cssnano": "^6.0.0",
"dotenv": "^16.3.1",
"dts-minify": "^0.3.2",
"esbuild": "^0.19.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-googlemaps": "^1.4.15",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jimp": "^0.22.10",
"json": "^11.0.0",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.1",
"sass": "^1.66.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.12",
"vite-plugin-singlefile": "^0.13.5",
"yaml": "^2.3.1"
},
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@googlemaps/js-api-loader": "^1.15.1",
"@googlemaps/markerclusterer": "2.3.1",
"@googlemaps/react-wrapper": "^1.1.35",
"@googlemaps/typescript-guards": "^2.0.3",
"@material/mwc-button": "^0.27.0",
"@material/select": "^14.0.0",
"@tweenjs/tween.js": "^21.0.0",
"clsx": "^2.0.0",
"fast-equals": "^3.0.3",
"playground-elements": "^0.18.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"screenfull": "^6.0.2",
"three": "^0.140.2"
}
}