-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.39 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.39 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
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
{
"name": "keyra",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint --ext .ts,.tsx src",
"start:ios": "npm run _start:ios",
"start:android": "npm run _start:android",
"start:ios:prod": "NODE_ENV=production npm run _start:ios",
"start:android:prod": "NODE_ENV=production npm run _start:android",
"deploy:ios": "npm run _deploy:ios",
"deploy:android": "npm run _deploy:android",
"deploy:ios:prod": "NODE_ENV=production npm run _deploy:ios",
"deploy:android:prod": "NODE_ENV=production npm run _deploy:android",
"_start:ios": "npx cap sync && npx cap run ios --live-reload --host localhost --target 5564CA63-E4F7-451F-868F-9323BEE8302C",
"_start:android": "npx cap sync && npx cap run android --live-reload",
"_deploy:ios": "npx cap sync && npx cap build ios",
"_deploy:android": "npx cap sync && npx cap build android"
},
"dependencies": {
"@aws-amplify/auth": "^6.11.0",
"@capacitor-community/contacts": "^6.1.1",
"@capacitor-community/http": "^1.4.1",
"@capacitor-community/sqlite": "^7.0.0",
"@capacitor/camera": "^7.0.0",
"@capacitor/core": "7.0.1",
"@capacitor/local-notifications": "^7.0.0",
"@capacitor/motion": "^7.0.0",
"@capacitor/preferences": "^7.0.0",
"@capacitor/share": "^7.0.0",
"@capacitor/splash-screen": "^7.0.0",
"@googlemaps/polyline-codec": "^1.0.28",
"@ionic/react": "^7.0.0",
"@ionic/react-router": "^7.0.0",
"@restart/hooks": "^0.6.2",
"@transistorsoft/capacitor-background-fetch": "^7.0.1",
"@transistorsoft/capacitor-background-geolocation": "^7.0.3",
"@types/jest": "^26.0.20",
"@types/node": "^12.19.15",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"amazon-cognito-identity-js": "^6.3.12",
"aws-amplify": "^6.13.0",
"axios": "^1.8.1",
"cordova": "^12.0.0",
"cordova-background-geolocation-plugin": "^2.3.1",
"history": "^4.9.0",
"ionicons": "^7.0.0",
"leaflet": "^1.9.4",
"libphonenumber-js": "^1.12.4",
"luxon": "^3.5.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-leaflet": "^5.0.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.0",
"typescript": "^4.1.3",
"uuid": "^11.1.0",
"web-vitals": "^0.2.4",
"workbox-background-sync": "^5.1.4",
"workbox-broadcast-update": "^5.1.4",
"workbox-cacheable-response": "^5.1.4",
"workbox-core": "^5.1.4",
"workbox-expiration": "^5.1.4",
"workbox-google-analytics": "^5.1.4",
"workbox-navigation-preload": "^5.1.4",
"workbox-precaching": "^5.1.4",
"workbox-range-requests": "^5.1.4",
"workbox-routing": "^5.1.4",
"workbox-strategies": "^5.1.4",
"workbox-streams": "^5.1.4"
},
"devDependencies": {
"@capacitor/android": "^7.0.1",
"@capacitor/cli": "7.0.1",
"@capacitor/ios": "^7.0.1",
"@types/leaflet": "^1.9.16",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"i": "^0.3.7",
"npm": "^11.2.0"
},
"browserslist": [
"Chrome >=79",
"ChromeAndroid >=79",
"Firefox >=70",
"Edge >=79",
"Safari >=14",
"iOS >=14"
]
}