erp-vidrio-templado-backend-v2/package.json
rckrdmrd 0628a86ec1 [ERP-VIDRIO-TEMPLADO] feat: Create backend scaffold
- package.json with Express, TypeORM, PostgreSQL dependencies
- tsconfig.json with TypeScript compiler options
- src/index.ts with health and API info endpoints
- .gitignore with standard exclusions
- Build compiles successfully

Ready for module implementation (8 modules planned)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 12:42:37 -06:00

47 lines
1.1 KiB
JSON

{
"name": "erp-vidrio-templado-backend",
"version": "0.1.0",
"description": "Backend para ERP de Vidrio Templado - Sistema de gestión de producción, cotización y despacho",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"erp",
"vidrio-templado",
"glass",
"manufacturing",
"production"
],
"author": "ISEM",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"express": "^4.18.2",
"typeorm": "^0.3.17",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"class-validator": "^0.14.0",
"class-transformer": "^0.5.1"
},
"devDependencies": {
"typescript": "^5.3.3",
"@types/node": "^20.10.0",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/pg": "^8.10.9",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}