24 lines
566 B
JSON
24 lines
566 B
JSON
|
|
{
|
||
|
|
"name": "@landvex/application",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "Application layer and use cases for LandveX domain",
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"types": "dist/index.d.ts",
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsc",
|
||
|
|
"test": "jest",
|
||
|
|
"test:watch": "jest --watch"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@landvex/domain": "file:../domain",
|
||
|
|
"@landvex/infrastructure": "file:../infrastructure"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/jest": "^29.5.0",
|
||
|
|
"@types/node": "^20.0.0",
|
||
|
|
"jest": "^29.5.0",
|
||
|
|
"ts-jest": "^29.1.0",
|
||
|
|
"typescript": "^5.3.0"
|
||
|
|
}
|
||
|
|
}
|