- Created .gitignore to exclude sensitive files and directories. - Added API documentation in API_DOCUMENTATION.md. - Included deployment instructions in DEPLOYMENT.md. - Established project structure documentation in PROJECT_STRUCTURE.md. - Updated README.md with project status and team information. - Added recommendations and status tracking documents. - Introduced testing guidelines in TESTING.md. - Set up CI workflow in .github/workflows/ci.yml. - Created Dockerfile for backend and frontend setups. - Added various service and utility files for backend functionality. - Implemented frontend components and pages for user interface. - Included mobile app structure and services. - Established scripts for deployment across multiple chains.
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "asle-mobile",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"android": "react-native run-android",
|
|
"ios": "react-native run-ios",
|
|
"start": "react-native start",
|
|
"test": "jest",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"react": "18.2.0",
|
|
"react-native": "0.73.0",
|
|
"@react-navigation/native": "^6.1.9",
|
|
"@react-navigation/bottom-tabs": "^6.5.11",
|
|
"@react-navigation/stack": "^6.3.20",
|
|
"react-native-paper": "^5.11.3",
|
|
"react-native-safe-area-context": "^4.8.2",
|
|
"react-native-screens": "^3.29.0",
|
|
"react-native-gesture-handler": "^2.14.0",
|
|
"@wagmi/core": "^2.10.0",
|
|
"viem": "^2.40.3",
|
|
"zustand": "^4.5.0",
|
|
"axios": "^1.7.9",
|
|
"react-native-keychain": "^8.1.3",
|
|
"react-native-biometrics": "^3.0.1",
|
|
"@react-native-async-storage/async-storage": "^1.21.0",
|
|
"react-native-push-notification": "^8.1.1",
|
|
"@react-native-community/push-notification-ios": "^1.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.5",
|
|
"@babel/preset-env": "^7.23.5",
|
|
"@babel/runtime": "^7.23.5",
|
|
"@react-native/eslint-config": "^0.73.1",
|
|
"@react-native/metro-config": "^0.73.2",
|
|
"@react-native/typescript-config": "^0.73.1",
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-test-renderer": "^18.0.7",
|
|
"babel-jest": "^29.7.0",
|
|
"eslint": "^8.55.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.1.1",
|
|
"react-test-renderer": "18.2.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|
|
|