Side-by-side comparison of viable Clojure-on-Android approaches: - todo-expo/: ClojureScript + shadow-cljs + Expo + Reagent + re-frame - todo-flutter/: ClojureDart + Flutter Both apps feature: add/remove/check-off todos, SQLite persistence, categories, priorities, edit support, swipe-to-delete, filtering. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"scripts": {
|
|
"server": "npx shadow-cljs server",
|
|
"start": "npx expo start",
|
|
"android": "npx expo start --android",
|
|
"ios": "npx expo start --ios",
|
|
"web": "npx expo start --web",
|
|
"web-only": "npx expo start --web-only",
|
|
"release": "npx shadow-cljs release app",
|
|
"eject": "npx expo eject",
|
|
"eas-build-pre-install": "bash eas-build-pre-install.sh",
|
|
"eas-build-post-install": "npx shadow-cljs release app"
|
|
},
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^15.0.2",
|
|
"@react-navigation/native": "^6.1.6",
|
|
"@react-navigation/native-stack": "^6.9.12",
|
|
"create-react-class": "^15.7.0",
|
|
"expo": "^55.0.2",
|
|
"expo-cli": "^6.3.8",
|
|
"expo-sqlite": "~55.0.10",
|
|
"expo-status-bar": "~55.0.4",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"react-native": "0.83.2",
|
|
"react-native-gesture-handler": "~2.30.0",
|
|
"react-native-reanimated": "4.2.1",
|
|
"react-native-safe-area-context": "~5.6.2",
|
|
"react-native-screens": "~4.23.0",
|
|
"react-native-web": "^0.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"shadow-cljs": "^2.23.3"
|
|
},
|
|
"private": true
|
|
}
|