Transitions UI to react.js

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-28 01:03:44 +00:00
co-authored by Copilot
parent 1897f8a9e7
commit dcae0b604b
12 changed files with 469 additions and 225 deletions
+11 -4
View File
@@ -3,19 +3,26 @@
"version": "1.0.0",
"description": "Capacitor mobile app",
"scripts": {
"build": "echo 'Add your web build command here'",
"sync": "cap sync",
"android": "cap run android",
"dev": "next dev",
"build": "next build",
"sync": "npm run build && cap sync",
"android": "npm run sync && cap run android",
"open:android": "cap open android"
},
"dependencies": {
"@anuradev/capacitor-background-mode": "^7.2.1",
"@capacitor/android": "^7.0.0",
"@capacitor/core": "^7.0.0",
"@capacitor/ios": "^7.0.0"
"@capacitor/ios": "^7.0.0",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@capacitor/cli": "^7.0.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.3"
}
}