miinventario-v2/package.json
rckrdmrd 1a53b5c4d3 [MIINVENTARIO] feat: Initial commit - Sistema de inventario con análisis de video IA
- Backend NestJS con módulos de autenticación, inventario, créditos
- Frontend React con dashboard y componentes UI
- Base de datos PostgreSQL con migraciones
- Tests E2E configurados
- Configuración de Docker y deployment

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-13 02:25:48 -06:00

48 lines
1.5 KiB
JSON

{
"name": "miinventario",
"version": "0.1.0",
"description": "SaaS Movil para inventario automatico por video para negocios pequenos en Mexico",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:mobile\"",
"dev:backend": "npm run start:dev --workspace=apps/backend",
"dev:mobile": "npm run start --workspace=apps/mobile",
"build:backend": "npm run build --workspace=apps/backend",
"build:all": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"db:up": "docker-compose up -d postgres redis minio",
"db:down": "docker-compose down",
"db:reset": "docker-compose down -v && docker-compose up -d postgres redis minio",
"db:logs": "docker-compose logs -f postgres",
"db:psql": "docker exec -it miinventario-postgres psql -U postgres -d miinventario_dev"
},
"repository": {
"type": "git",
"url": "git@git.isem.site:isem/miinventario.git"
},
"keywords": [
"inventory",
"video",
"ai",
"saas",
"mobile",
"react-native",
"nestjs"
],
"author": "ISEM",
"license": "UNLICENSED",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"devDependencies": {
"concurrently": "^8.2.0"
}
}