-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 799 Bytes
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
{
"name": "aura-capacitor-app",
"version": "1.0.0",
"private": true,
"description": "AURA iOS web app wrapped with Capacitor",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"cap:sync": "npx cap sync ios",
"cap:open": "npx cap open ios",
"ios": "npm run build && npm run cap:sync && npm run cap:open",
"start:api": "node server/server.js"
},
"dependencies": {
"@capacitor/core": "^7.4.2",
"@capacitor/ios": "^7.4.2",
"@capacitor/local-notifications": "^7.0.6",
"@revenuecat/purchases-capacitor": "^11.3.2",
"@supabase/supabase-js": "^2.100.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"playwright": "^1.59.1"
},
"devDependencies": {
"@capacitor/cli": "^7.4.2",
"vite": "^7.1.3"
}
}