feat: Sprint 0 — project scaffold, DB schema, Zustand stores, base UI components

This commit is contained in:
root
2026-02-18 06:21:22 +08:00
commit 8f66a4d4ed
22 changed files with 497 additions and 0 deletions

43
package.json Normal file
View File

@@ -0,0 +1,43 @@
{
"name": "territory-log",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"expo": "~52.0.0",
"expo-router": "~4.0.0",
"expo-sqlite": "~15.0.0",
"expo-location": "~18.0.0",
"expo-local-authentication": "~14.0.0",
"expo-camera": "~16.0.0",
"expo-sharing": "~12.0.0",
"expo-document-picker": "~12.0.0",
"expo-file-system": "~18.0.0",
"react": "18.3.2",
"react-native": "0.76.0",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.0.0",
"react-native-gesture-handler": "~2.20.0",
"react-native-reanimated": "~3.16.0",
"@gorhom/bottom-sheet": "^5.0.0",
"zustand": "^5.0.0",
"nativewind": "^4.0.0",
"lucide-react-native": "^0.460.0",
"react-native-svg": "15.8.0"
},
"devDependencies": {
"@babel/core": "^7.25.0",
"@types/react": "~18.3.12",
"typescript": "^5.3.0",
"tailwindcss": "^3.4.0",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.0",
"prettier": "^3.3.0"
}
}