2026-01-29 19:13:30 -08:00
|
|
|
{
|
|
|
|
|
"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": {
|
2026-01-29 19:39:53 -08:00
|
|
|
"@lilith/domain-events": "^2.8.0",
|
2026-01-29 19:13:30 -08:00
|
|
|
"@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"
|
|
|
|
|
}
|
|
|
|
|
}
|