social-reporting-tool/package.json
DJP 50e1675b10 Initial commit: Social Listening Pipeline
8-stage TypeScript pipeline with Apify scraping, Claude AI analysis,
real-time dashboard with SSE, PostgreSQL cost tracking, and Apify budget controls.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-02 22:18:02 -04:00

20 lines
559 B
JSON

{
"name": "social-listening-platform",
"version": "2.0.0",
"type": "module",
"private": true,
"scripts": {
"pipeline": "tsx agents/social-listening/run.ts",
"dashboard": "tsx agents/social-listening/dashboard/server.ts",
"pipeline:test": "TEST_MODE=true tsx agents/social-listening/run.ts",
"pipeline:live": "APIFY_LIVE_APPROVED=true tsx agents/social-listening/run.ts"
},
"dependencies": {
"postgres": "^3.4.8",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
},
"devDependencies": {
"@types/node": "^20.11.0"
}
}