- Introduced SpoolPreset and User domain models with necessary DTOs and utility functions. - Created AuthRepository, FilamentRepository, and SpoolPresetRepository interfaces for authentication and data management. - Implemented UI components for filament display, including ColorSwatch, FilamentCard, and StockBar. - Developed layout components such as Header and Screen for consistent app structure. - Added reusable UI components like Badge, Button, Card, and Input for better user interaction. - Established global constants and theme settings for consistent styling across the application. - Implemented utility functions for filament calculations and formatting. - Created Zustand stores for managing authentication, filament, and preset states. - Configured TypeScript settings for improved development experience.
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "meowspool-mobile",
|
|
"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 src --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^15.0.3",
|
|
"@hookform/resolvers": "^3.9.0",
|
|
"@react-navigation/bottom-tabs": "^7.15.5",
|
|
"@react-navigation/native": "^7.1.33",
|
|
"@react-navigation/native-stack": "^7.14.5",
|
|
"axios": "^1.7.7",
|
|
"expo": "~54.0.0",
|
|
"expo-constants": "~18.0.13",
|
|
"expo-font": "~14.0.11",
|
|
"expo-linking": "~8.0.11",
|
|
"expo-router": "~6.0.23",
|
|
"expo-secure-store": "~15.0.8",
|
|
"expo-splash-screen": "~31.0.13",
|
|
"expo-sqlite": "~16.0.10",
|
|
"expo-status-bar": "~3.0.9",
|
|
"expo-system-ui": "~6.0.9",
|
|
"react": "19.1.0",
|
|
"react-hook-form": "^7.53.0",
|
|
"react-native": "0.81.5",
|
|
"react-native-gesture-handler": "~2.28.0",
|
|
"react-native-qrcode-svg": "^6.3.0",
|
|
"react-native-reanimated": "~4.1.1",
|
|
"react-native-safe-area-context": "~5.6.0",
|
|
"react-native-screens": "~4.16.0",
|
|
"react-native-svg": "15.12.1",
|
|
"zod": "^3.23.8",
|
|
"zustand": "^4.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.0",
|
|
"@types/react": "~19.1.10",
|
|
"@types/react-native": "~0.73.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
"@typescript-eslint/parser": "^7.0.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-react": "^7.34.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-native": "^4.1.0",
|
|
"typescript": "~5.9.2"
|
|
}
|
|
}
|