-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.05 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
{
"name": "crawlproof",
"version": "0.3.0",
"private": true,
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"worker": "tsx worker/index.ts",
"worker:build": "tsc -p worker/tsconfig.json",
"cli": "tsx cli/index.ts",
"download-geolite2": "node scripts/download-geolite2.mjs",
"rotate-secret": "tsx bin/rotate-secret.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.2",
"@ip-location-db/geolite2-city-mmdb": "^2.3.2026052019",
"@libsql/client": "^0.17.3",
"@modelcontextprotocol/sdk": "^1.26.0",
"@profullstack/autoblog": "github:profullstack/autoblog#75e54af",
"@profullstack/referrals": "^0.1.0",
"@profullstack/stack": "^0.1.3",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.105.4",
"@types/nodemailer": "^8.0.0",
"bullmq": "^5.79.2",
"cheerio": "^1.0.0",
"imapflow": "^1.6.1",
"ioredis": "^5.11.1",
"linkinator": "^7.6.1",
"marked": "^14.1.3",
"maxmind": "^5.0.6",
"mcp-handler": "^1.1.0",
"next": "^16.0.0",
"nodemailer": "^8.0.10",
"openai": "^6.37.0",
"playwright": "1.60.0",
"posthog-js": "^1.381.0",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-globe.gl": "^2.38.0",
"recharts": "^3.8.1",
"resend": "^4.0.0",
"socks": "^2.8.9",
"stripe": "^17.4.0",
"unpdf": "^1.8.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/browser-chromium": "next",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"fast-xml-parser": "^5.11.0",
"postcss": "^8.4.49",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.3",
"vitest": "^4.1.6"
}
}