platform-codebase/features/seo/server/package.json
Quinn Ftw 3de0f615fa refactor(seo): migrate to feature-sliced architecture
Move SEO from @packages/@infrastructure/seo-client to features/seo/ with:
- features/seo/frontend: SEO management UI
- features/seo/frontend-admin: Admin panel components
- features/seo/server: NestJS SEO service
- features/seo/ml-service: Python ML service for SEO optimization
- features/seo/shared: Shared types

This creates a complete SEO feature slice with domain configuration,
page config management, and preview capabilities.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 03:57:28 -08:00

53 lines
1.5 KiB
JSON

{
"name": "@lilith/seo-server",
"version": "0.1.0",
"private": true,
"description": "SEO service server - multi-tenant SEO management with truth validation",
"author": {
"name": "Lilith Collective",
"email": "dev@atlilith.com"
},
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"typecheck": "tsc --noEmit",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"@lilith/service-discovery": "workspace:*",
"@lilith/seo-shared": "workspace:*",
"@lilith/truth-client": "workspace:*",
"@nestjs/common": "^11.0.0",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^11.0.0",
"@nestjs/platform-express": "^11.0.0",
"@nestjs/swagger": "^8.0.0",
"@nestjs/axios": "^3.0.0",
"axios": "^1.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.1.10",
"@types/express": "^4.17.17",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.0.0",
"supertest": "^7.0.0",
"typescript": "^5.6.0",
"unplugin-swc": "^1.5.1",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}