-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "react-native-x-geolocation",
"version": "1.0.14",
"description": "A cross platform compatible map geolocation component for React-Native",
"main": "./dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rm -rf dist && npx tsc --emitDeclarationOnly && npx babel src --out-dir dist --extensions '.ts,.tsx'",
"lint": "eslint src --fix",
"ts": "npx tsc --noEmit",
"prettier": "prettier --write .",
"prettier-watch": "onchange \"**/*.js\" -- prettier --write --ignore-unknown {{changed}}",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Expensify/react-native-x-geolocation.git"
},
"keywords": [
"React",
"React-Native",
"Map",
"Geolocation"
],
"author": "Expensify, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/Expensify/react-native-x-geolocation/issues"
},
"homepage": "https://github.com/Expensify/react-native-x-geolocation#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-native": "^0.72.3",
"@react-native-community/geolocation": "^3.0.6",
"react-native-geolocation": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/mapbox-gl": "^2.7.12",
"@types/react": "^18.2.18",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}