-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "transit-alarm",
"version": "1.1.0",
"description": "Transit Alarm for MTA",
"type": "module",
"keywords": [
"capacitor",
"mobile"
],
"scripts": {
"eslint": "npx eslint src/**/*.js",
"start": "vite",
"build": "vite build",
"sync": "npx cap sync",
"sync:android": "npx cap sync android",
"sync:ios": "npx cap sync ios",
"sync:mta": "node scripts/sync-gtfs-static-data.js && node scripts/sync-mta-colors.js && node scripts/sync-mta-subway-stations.js",
"ide:android": "npx cap open android",
"ide:ios": "npx cap open ios",
"preview:android": "npx cap run android",
"preview:ios": "npx cap run ios",
"preview:web": "vite preview",
"deploy:web": "node scripts/deploy-web.js"
},
"dependencies": {
"@capacitor-community/background-geolocation": "^1.2.19",
"@capacitor/android": "^5.7.8",
"@capacitor/core": "^5.7.8",
"@capacitor/geolocation": "^5.0.8",
"@capacitor/haptics": "^5.0.8",
"@capacitor/ios": "^5.7.8",
"@capacitor/local-notifications": "file:custom-plugins/capacitor-local-notifications-5.0.8.tgz",
"@capacitor/splash-screen": "^5.0.8",
"@capacitor/toast": "^5.0.8",
"@ionic/pwa-elements": "^3.3.0",
"bootstrap": "^5.3.3"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^5.7.8",
"@eslint/js": "^9.12.0",
"aws-sdk": "^2.1691.0",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"mime-types": "^2.1.35",
"vite": "^5.4.2"
},
"author": "Patrick Stankard <[email protected]>",
"license": "MIT"
}