platform-codebase/test/integration/package.json

35 lines
1 KiB
JSON

{
"name": "@lilith/integration-tests",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Cross-feature integration tests for Lilith Platform",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "bun run test:e2e:up && vitest run && bun run test:e2e:down",
"test:e2e:up": "docker compose up -d",
"test:e2e:down": "docker compose down -v",
"test:e2e:logs": "docker compose logs -f"
},
"dependencies": {
"@lilith/domain-events": "^2.8.0",
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/testing": "^10.4.15",
"@nestjs/typeorm": "^10.0.2",
"typeorm": "^0.3.20",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"@testcontainers/postgresql": "^10.16.0",
"supertest": "^7.0.0",
"testcontainers": "^10.16.0",
"vitest": "^2.1.8"
}
}