Files
CIAgent/apps/web/package.json
T
saksham 1a4c80958f Initial commit: CI Agent competitive-intelligence monitoring app
FastAPI + Celery + Next.js + Postgres/Redis app with company monitoring,
source collection, LLM-based change analysis, enrichment, and account
security (Turnstile, escalating lockout, email verification).
2026-08-05 10:48:20 -04:00

52 lines
1.3 KiB
JSON

{
"name": "ci-agent-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test"
},
"dependencies": {
"@hookform/resolvers": "3.9.1",
"@radix-ui/react-select": "^2.3.7",
"@tanstack/react-query": "5.59.20",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"lucide-react": "0.462.0",
"next": "15.5.22",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.53.2",
"recharts": "3.0.2",
"zod": "3.23.8"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.9.0",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "4.7.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-next": "15.5.22",
"jsdom": "25.0.1",
"postcss": "8.5.25",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"vitest": "3.2.7"
}
}