64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@erp-suite/mecanicas-diesel-backend",
|
|
"version": "0.1.0",
|
|
"description": "Backend for Mecánicas Diesel vertical - ERP Suite",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "ts-node-dev --respawn --transpile-only src/main.ts",
|
|
"start": "node dist/main.js",
|
|
"lint": "eslint src --ext .ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "jest",
|
|
"test:cov": "jest --coverage",
|
|
"db:migrate": "typeorm migration:run",
|
|
"db:migrate:revert": "typeorm migration:revert"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"typeorm": "^0.3.17",
|
|
"pg": "^8.11.3",
|
|
"reflect-metadata": "^0.2.1",
|
|
"dotenv": "^16.3.1",
|
|
"zod": "^3.22.4",
|
|
"bcryptjs": "^2.4.3",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"uuid": "^9.0.1",
|
|
"cors": "^2.8.5",
|
|
"helmet": "^7.1.0",
|
|
"compression": "^1.7.4",
|
|
"morgan": "^1.10.0",
|
|
"winston": "^3.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.0",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/compression": "^1.7.5",
|
|
"@types/morgan": "^1.9.9",
|
|
"typescript": "^5.3.3",
|
|
"ts-node-dev": "^2.0.0",
|
|
"eslint": "^8.55.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
"@typescript-eslint/parser": "^6.14.0",
|
|
"jest": "^29.7.0",
|
|
"@types/jest": "^29.5.11",
|
|
"ts-jest": "^29.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"keywords": [
|
|
"erp",
|
|
"mecanicas",
|
|
"diesel",
|
|
"taller",
|
|
"workshop"
|
|
],
|
|
"author": "ISEM Team",
|
|
"license": "PROPRIETARY"
|
|
}
|