forked from wseow87/react-native-web-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 1.98 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
{
"name": "react-native-web-maps",
"version": "1.0.0",
"description": "React Native for Web implementation of react-native-maps",
"main": "dist/index.js",
"main-es": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:react-native-web-community/react-native-web-maps.git"
},
"author": {
"name": "Aurore Malherbes",
"email": "[email protected]",
"url": "https://github.com/aurorem"
},
"license": "MIT",
"keywords": [
"react-native",
"react-native-web",
"react-native-web-maps"
],
"scripts": {
"prepublish": "yarn build",
"build": "tsc && babel src --out-dir dist",
"test:lint": "yarn eslint . --quiet",
"test": "yarn test:lint"
},
"babel": {
"presets": [
"@babel/preset-typescript",
"react-native"
]
},
"files": [
"dist",
"src",
"yarn.lock"
],
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "^7.26.10",
"@babel/preset-typescript": "^7.26.0",
"@react-native-community/cli": "^18.0.0",
"@types/lodash": "^4.17.16",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-native-maps": "^0.24.1",
"@types/react-native-web": "^0.19.0",
"babel-loader": "^10.0.0",
"babel-preset-react-native": "^5.0.2",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.7",
"react-native-web": "0.19.13",
"typescript": "^5.8.2",
"webpack": "^5.98.0"
},
"peerDependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.7",
"react-native-maps": "1.18.0",
"react-native-web": "0.19.13"
},
"dependencies": {
"@react-google-maps/api": "^2.20.6",
"lodash": "^4.17.21"
}
}