Platform Marketing Content: - Add PaginationParams, PaginationMeta, PaginatedResponse interfaces - Fix JwtAuthGuard import paths (common/guards instead of modules/auth) - Add missing fields to CRM interfaces (address, keywords, features, benefits) - Install @nestjs/throttler dependency ERP Suite - Construccion: - Create tsconfig.node.json for web frontend - Add vite-env.d.ts for Vite types - Fix implicit return errors in Express controllers - Prefix unused parameters with underscore ERP Suite - ERP Core: - Export PoolClient type from database config - Fix invoice type comparison (customer/supplier vs out_invoice) - Refactor base.service.ts query handling for proper type inference - Rename Role type to RoleType to avoid conflict with entity - Fix ProtectedRoute to use role?.name instead of roles array ERP Suite - POS Micro: - Add vite-env.d.ts for Vite types - Fix Sale property names (discountAmount, changeAmount) - Export TodaySummary interface from sales service All projects now pass npm install and npm run build successfully. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
88 lines
2.4 KiB
JSON
88 lines
2.4 KiB
JSON
{
|
|
"name": "@orbiquant/backend",
|
|
"version": "0.1.0",
|
|
"description": "OrbiQuant IA - Backend API",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"express": "^5.0.1",
|
|
"cors": "^2.8.5",
|
|
"helmet": "^8.1.0",
|
|
"compression": "^1.7.4",
|
|
"morgan": "^1.10.0",
|
|
"dotenv": "^16.4.7",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"bcryptjs": "^3.0.3",
|
|
"express-validator": "^7.0.1",
|
|
"express-rate-limit": "^7.5.0",
|
|
"pg": "^8.11.3",
|
|
"redis": "^4.6.10",
|
|
"stripe": "^14.7.0",
|
|
"axios": "^1.6.2",
|
|
"uuid": "^9.0.1",
|
|
"date-fns": "^4.1.0",
|
|
"winston": "^3.11.0",
|
|
"zod": "^3.22.4",
|
|
"passport": "^0.7.0",
|
|
"passport-google-oauth20": "^2.0.0",
|
|
"passport-facebook": "^3.0.0",
|
|
"passport-apple": "^2.0.2",
|
|
"passport-github2": "^0.1.12",
|
|
"passport-local": "^1.0.0",
|
|
"speakeasy": "^2.0.0",
|
|
"qrcode": "^1.5.3",
|
|
"twilio": "^4.19.3",
|
|
"nodemailer": "^7.0.11",
|
|
"google-auth-library": "^9.4.1",
|
|
"@anthropic-ai/sdk": "^0.71.2",
|
|
"openai": "^4.104.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/compression": "^1.7.5",
|
|
"@types/morgan": "^1.9.9",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/pg": "^8.10.9",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/node": "^20.10.4",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/passport": "^1.0.16",
|
|
"@types/passport-google-oauth20": "^2.0.14",
|
|
"@types/passport-facebook": "^3.0.3",
|
|
"@types/passport-github2": "^1.2.9",
|
|
"@types/passport-local": "^1.0.38",
|
|
"@types/speakeasy": "^2.0.10",
|
|
"@types/qrcode": "^1.5.5",
|
|
"@types/nodemailer": "^6.4.14",
|
|
"@types/ws": "^8.5.13",
|
|
"typescript": "^5.3.3",
|
|
"tsx": "^4.6.2",
|
|
"eslint": "^9.17.0",
|
|
"@eslint/js": "^9.17.0",
|
|
"typescript-eslint": "^8.18.0",
|
|
"globals": "^15.14.0",
|
|
"prettier": "^3.1.1",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"supertest": "^6.3.3",
|
|
"@types/supertest": "^2.0.16"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|