73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "sim-entrada-eventos",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "",
|
|
"main": "index.ts",
|
|
"imports": {
|
|
"#config/*.js": {
|
|
"types": "./config/*.ts",
|
|
"default": "./config/*.js"
|
|
},
|
|
"#config/*": {
|
|
"types": "./config/*.ts",
|
|
"default": "./config/*.js"
|
|
},
|
|
"#adapters/*.js": {
|
|
"types": "./infrastructure/*.ts",
|
|
"default": "./infrastructure/*.js"
|
|
},
|
|
"#adapters/*": {
|
|
"types": "./infrastructure/*.ts",
|
|
"default": "./infrastructure/*.js"
|
|
},
|
|
"#domain/*.js": {
|
|
"types": "./domain/*.ts",
|
|
"default": "./domain/*.js"
|
|
},
|
|
"#domain/*": {
|
|
"types": "./domain/*.ts",
|
|
"default": "./domain/*.js"
|
|
},
|
|
"#ports/*.js": {
|
|
"types": "./ports/*.ts",
|
|
"default": "./ports/*.js"
|
|
},
|
|
"#ports/*": {
|
|
"types": "./ports/*.ts",
|
|
"default": "./ports/*.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "node --import tsx --test ./**/*.test.ts",
|
|
"build": "tsc --build && tsc-alias -p tsconfig.json && cp package.json ../../dist/packages/sim-entrada-eventos/",
|
|
"dev": "tsx watch index.ts",
|
|
"start": "node ../../dist/packages/sim-entrada-eventos/index.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"packageManager": "yarn@4.12.0",
|
|
"dependencies": {
|
|
"@tsconfig/node22": "*",
|
|
"amqplib": "^0.10.9",
|
|
"cors": "*",
|
|
"dotenv": "*",
|
|
"express": "*",
|
|
"http-proxy-middleware": "^3.0.5",
|
|
"sim-shared": "sim-shared:*",
|
|
"typescript": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/amqplib": "^0.10.8",
|
|
"@types/cors": "*",
|
|
"@types/express": "*",
|
|
"@types/node": "*",
|
|
"@types/supertest": "*",
|
|
"prettier": "*",
|
|
"supertest": "*",
|
|
"tsc-alias": "^1.8.16",
|
|
"tsx": "*",
|
|
"vitest": "*"
|
|
}
|
|
}
|