Some checks failed
Build / Build Backend (push) Has been cancelled
Build / Build Mobile (TypeScript Check) (push) Has been cancelled
Lint / Lint Backend (push) Has been cancelled
Lint / Lint Mobile (push) Has been cancelled
Test / Backend E2E Tests (push) Has been cancelled
Test / Mobile Unit Tests (push) Has been cancelled
Build / Build Docker Image (push) Has been cancelled
- Add exports module with PDF/CSV/Excel generation - Add reports module for inventory analytics - Add POS integrations module - Add database migrations for exports, movements and integrations - Add GitHub Actions CI/CD workflow with Docker support - Add mobile export and reports screens with tests - Update epic documentation with traceability - Add deployment and security guides Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
64 lines
2.0 KiB
JSON
64 lines
2.0 KiB
JSON
{
|
|
"name": "@miinventario/mobile",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"start:dev": "expo start --dev-client",
|
|
"android": "expo run:android",
|
|
"ios": "expo run:ios",
|
|
"web": "expo start --web",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^3.3.0",
|
|
"@react-native-async-storage/async-storage": "1.21.0",
|
|
"@react-native-community/netinfo": "11.1.0",
|
|
"@react-navigation/bottom-tabs": "^6.5.0",
|
|
"@react-navigation/native": "^6.1.0",
|
|
"@react-navigation/native-stack": "^6.9.0",
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"axios": "^1.6.0",
|
|
"expo": "~50.0.0",
|
|
"expo-av": "~13.10.0",
|
|
"expo-camera": "~14.0.0",
|
|
"expo-clipboard": "^8.0.8",
|
|
"expo-file-system": "~16.0.0",
|
|
"expo-image-picker": "~14.7.0",
|
|
"expo-router": "~3.4.0",
|
|
"expo-secure-store": "~12.8.0",
|
|
"expo-splash-screen": "~0.26.0",
|
|
"expo-status-bar": "~1.11.0",
|
|
"react": "18.2.0",
|
|
"react-hook-form": "^7.48.0",
|
|
"react-native": "0.73.0",
|
|
"react-native-gesture-handler": "~2.14.0",
|
|
"react-native-reanimated": "~3.6.0",
|
|
"react-native-safe-area-context": "4.8.2",
|
|
"react-native-screens": "~3.29.0",
|
|
"zod": "^3.22.0",
|
|
"zustand": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0",
|
|
"@testing-library/react-native": "^12.0.0",
|
|
"@types/react": "~18.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.42.0",
|
|
"eslint-plugin-react": "^7.32.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"jest": "^29.5.0",
|
|
"jest-junit": "^16.0.0",
|
|
"prettier": "^3.0.0",
|
|
"react-test-renderer": "18.2.0",
|
|
"typescript": "^5.1.0"
|
|
}
|
|
}
|