- Configure workspace Git repository with comprehensive .gitignore - Add Odoo as submodule for ERP reference code - Include documentation: SETUP.md, GIT-STRUCTURE.md - Add gitignore templates for projects (backend, frontend, database) - Structure supports independent repos per project/subproject level Workspace includes: - core/ - Reusable patterns, modules, orchestration system - projects/ - Active projects (erp-suite, gamilit, trading-platform, etc.) - knowledge-base/ - Reference code and patterns (includes Odoo submodule) - devtools/ - Development tools and templates - customers/ - Client implementations template 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
757 B
JSON
29 lines
757 B
JSON
{
|
|
"name": "@construccion-mvp/frontend-mobile",
|
|
"version": "1.0.0",
|
|
"description": "Frontend Mobile - MVP Sistema Administración de Obra e INFONAVIT",
|
|
"main": "node_modules/expo/AppEntry.js",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo start --android",
|
|
"ios": "expo start --ios",
|
|
"web": "expo start --web"
|
|
},
|
|
"dependencies": {
|
|
"expo": "~50.0.0",
|
|
"expo-status-bar": "~1.11.1",
|
|
"react": "18.2.0",
|
|
"react-native": "0.73.0",
|
|
"@react-navigation/native": "^6.1.9",
|
|
"@react-navigation/native-stack": "^6.9.17",
|
|
"zustand": "^4.4.7",
|
|
"axios": "^1.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.5",
|
|
"@types/react": "~18.2.45",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"private": true
|
|
}
|