Greenfield implementation of CardClaws Phase 1 across three surfaces. Backend (Rust/Axum workspace, 67 tests): - cardclaws-types/config/db/auth/api/wallet crates - Auth: register, login + lockout, magic link, refresh rotation, Apple verify - Cards: CRUD, tier-limited publish, duplicate, public handle lookup - Assets: R2 presigned uploads; vCard export - Apple Wallet .pkpass pipeline (PKCS#7 signer behind apple-signing feature) - Analytics ingest + summary with daily-salted IP hashing - Migrations 0001 (incl. cardclaws_sessions) + 0002 analytics Web profile (Astro SSR): cardclaws.com/[handle] hero + flip, contact actions, client-built vCard, visit attribution. Verified end-to-end. Mobile (Expo SDK 51): auth, card list/create, builder v1 (bg/text/logo, palette, undo/redo), Skia/Reanimated viewer (flip + ambient). 22 logic tests. CI: policy/backend/profile/mobile jobs; LOC + no-placeholder lint. Review fixes baked in: `back` (not `cardclaws`) key; strip image is a bundled manifest file (not a URL); sessions table added; NFC reframed; test doubles allowed for external services. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "cardclaws-mobile",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"ios": "expo run:ios",
|
|
"android": "expo run:android",
|
|
"test": "jest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@shopify/react-native-skia": "1.2.3",
|
|
"@tanstack/react-query": "^5.51.0",
|
|
"axios": "^1.7.2",
|
|
"expo": "~51.0.28",
|
|
"expo-haptics": "~13.0.1",
|
|
"expo-router": "~3.5.23",
|
|
"expo-status-bar": "~1.12.1",
|
|
"react": "18.2.0",
|
|
"react-native": "0.74.5",
|
|
"react-native-gesture-handler": "~2.16.1",
|
|
"react-native-mmkv": "^2.12.2",
|
|
"react-native-reanimated": "~3.10.1",
|
|
"react-native-safe-area-context": "4.10.5",
|
|
"react-native-screens": "3.31.1",
|
|
"qrcode": "^1.5.4",
|
|
"zustand": "^4.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react-native": "^12.5.1",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/qrcode": "^1.5.5",
|
|
"@types/react": "~18.2.79",
|
|
"jest": "^29.7.0",
|
|
"jest-expo": "~51.0.4",
|
|
"react-test-renderer": "18.2.0",
|
|
"ts-jest": "^29.2.4",
|
|
"typescript": "~5.3.3"
|
|
}
|
|
}
|