59 lines
1.8 KiB
JSON
59 lines
1.8 KiB
JSON
{
|
|
"name": "@lilith/content-moderation-api",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "Content moderation service with truth validation integration",
|
|
"author": "The Collective",
|
|
"license": "UNLICENSED",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "eslint \"**/*.ts\" --fix",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:watch": "vitest",
|
|
"test:cov": "vitest run --coverage",
|
|
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/domain-events": "^2.9.1",
|
|
"@lilith/nestjs-health": "^1.0.0",
|
|
"@lilith/service-registry": "^1.3.0",
|
|
"@lilith/knowledge-verification-client": "^1.0.0",
|
|
"@nestjs/common": "11.1.11",
|
|
"@nestjs/config": "^4.0.2",
|
|
"@nestjs/core": "11.1.11",
|
|
"@nestjs/platform-express": "11.1.11",
|
|
"@nestjs/schedule": "^6.1.0",
|
|
"@nestjs/throttler": "^6.5.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.3",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.2",
|
|
"typeorm": "^0.3.20"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.2.0",
|
|
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
|
|
"@nestjs/cli": "^11.0.16",
|
|
"@nestjs/schematics": "^11.0.9",
|
|
"@nestjs/testing": "^11.1.12",
|
|
"@swc/cli": "^0.6.0",
|
|
"@swc/core": "^1.11.29",
|
|
"@types/node": "^20.19.30",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.17"
|
|
}
|
|
}
|