-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4.3 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 4.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "client-engine",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx tsc --project tsconfig.worker.json && npx tsc-alias --project tsconfig.worker.json && next build",
"start": "next start",
"lint": "eslint",
"worker": "npx tsx src/workers/index.ts",
"db:migrate": "npx prisma migrate dev",
"db:seed": "node prisma/seed.mjs",
"db:seed-integrations": "node prisma/seed-integrations.mjs",
"reset-auth": "node prisma/reset-auth.mjs",
"db:push": "npx prisma db push",
"db:seed-projects": "node prisma/seed-projects.mjs",
"db:seed-intake-leads": "node prisma/seed-intake-leads.mjs",
"db:seed-followups": "node prisma/seed-followups.mjs",
"db:seed-proof": "node prisma/seed-proof.mjs",
"db:seed-proof-candidates": "node prisma/seed-proof-candidates.mjs",
"db:seed-command-center": "node prisma/seed-command-center.mjs",
"db:seed-proposals": "node prisma/seed-proposals.mjs",
"db:seed-delivery": "node prisma/seed-delivery.mjs",
"db:seed-job-schedules": "npx tsx scripts/seed-job-schedules.ts",
"db:seed-notification-channels": "npx tsx scripts/seed-notification-channels.ts",
"db:seed-escalation-rules": "npx tsx scripts/seed-escalation-rules.ts",
"db:seed-risk-nba": "npx tsx scripts/seed-risk-nba.ts",
"db:clean-demo": "npx tsx scripts/clean-demo-data.ts",
"test": "npm run test:prepare && vitest run --no-file-parallelism",
"test:prepare": "node scripts/test-prepare.mjs",
"test:jobs": "vitest run --no-file-parallelism src/lib/jobs/",
"test:e2e": "playwright test",
"test:e2e:dry": "PIPELINE_DRY_RUN=1 playwright test",
"smoke": "PIPELINE_DRY_RUN=1 playwright test tests/e2e/smoke.spec.ts tests/e2e/full-flow.spec.ts tests/e2e/proof-api.spec.ts",
"script:research-lead": "node scripts/create-research-lead.mjs",
"script:seed-coach-prospects": "npx tsx scripts/seed-coach-prospects.ts",
"script:rescore-placeholder-leads": "PIPELINE_DRY_RUN=0 npx tsx scripts/rescore-placeholder-leads.ts",
"script:seed-twitter-coaches": "npx tsx scripts/seed-twitter-coach-prospects.ts",
"script:seed-upwork-reddit-coaches": "npx tsx scripts/seed-upwork-reddit-prospects.ts",
"research:run": "npx tsx scripts/research-run.ts",
"deploy": "bash scripts/deploy-remote.sh",
"deploy:full": "bash scripts/deploy-remote.sh --full",
"ops:deploy:fast": "bash scripts/deploy-fast.sh",
"ops:deploy:safe": "bash scripts/deploy-safe.sh",
"ops:logs": "bash scripts/watch-prod.sh",
"ops:health": "curl -sf http://127.0.0.1:3200/api/health 2>/dev/null || curl -sf https://evenslouis.ca/api/health",
"docs:generate": "npx tsx scripts/generate-docs.ts",
"docs:check": "npx tsx scripts/generate-docs.ts --check",
"docs:context": "npx tsx scripts/generate-ai-context.ts",
"docs:context:copy": "npx tsx scripts/generate-ai-context.ts --clipboard"
},
"prisma": {
"seed": "node prisma/seed.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@auth/prisma-adapter": "^2.11.1",
"@danielxceron/youtube-transcript": "^1.2.6",
"@prisma/client": "^6.19.2",
"bcryptjs": "^3.0.3",
"bullmq": "^5.69.3",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"imapflow": "^1.2.10",
"ioredis": "^5.9.3",
"lucide-react": "^0.575.0",
"mailparser": "^3.9.3",
"next": "16.1.6",
"next-auth": "^5.0.0-beta.30",
"nodemailer": "^7.0.13",
"posthog-js": "^1.356.0",
"posthog-node": "^5.28.5",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"rss-parser": "^3.13.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"youtube-transcript": "^1.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/mailparser": "^3.4.6",
"@types/node": "^20",
"@types/nodemailer": "^6.4.23",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^16.6.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"happy-dom": "^20.7.0",
"prisma": "^6.19.2",
"tailwindcss": "^4",
"tsc-alias": "^1.8.16",
"typescript": "^5",
"vitest": "^4.1.1"
}
}