-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.81 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.81 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
{
"name": "googlemapscustommarker",
"widgetName": "GoogleMapsCustomMarker",
"version": "2.1.0",
"description": "An extension to the default Mendix Maps widget for showing point locations on a Google Map. It offers heaps of extra features like dropping/dragging and clustering",
"copyright": "Apache v2",
"author": "Ivo Sturm",
"config": {
"projectPath": "../..//",
"mendixHost": "http://localhost:8080",
"developmentPort": "3000"
},
"packagePath": "valcon",
"scripts": {
"start": "pluggable-widgets-tools start:server --open",
"dev": "pluggable-widgets-tools start:web",
"build": "pluggable-widgets-tools build:web",
"lint": "pluggable-widgets-tools lint",
"lint:fix": "pluggable-widgets-tools lint:fix",
"prerelease": "npm run lint",
"release": "pluggable-widgets-tools release:web"
},
"license": "Apache-2.0",
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^10.0.1",
"@types/big.js": "^6.2.0",
"@types/classnames": "^2.2.4",
"@types/google.maps": "^3.58.1",
"@types/googlemaps": "^3.43.3",
"@types/lodash": "^4.17.13",
"@types/supercluster": "^7.1.3"
},
"dependencies": {
"@vis.gl/react-google-maps": "1.8.2",
"classnames": "^2.2.6",
"googlemaps": "^1.12.0",
"lodash": "^4.18.1",
"mendix-client": "^7.15.8",
"supercluster": "^8.0.1",
"terra-draw": "^1.25.0",
"terra-draw-google-maps-adapter": "^1.3.1"
},
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@types/react-native": "0.72.7"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@types/react-native": "0.72.7"
}
}