-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.78 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.78 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
{
"name": "privacyhub",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:cf": "npx @opennextjs/cloudflare build",
"run:cf": "npx wrangler dev",
"deploy:cf": "npx wrangler deploy --env=\"\"",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"pages:build": "npx @cloudflare/next-on-pages",
"pages:deploy": "npm run pages:build && wrangler pages deploy",
"pages:dev": "npx @cloudflare/next-on-pages --watch",
"worker:build": "npm run build && npm run pages:build",
"worker:deploy": "npm run worker:build && wrangler deploy",
"worker:dev": "wrangler dev",
"cf:login": "wrangler login",
"cf:logout": "wrangler logout",
"d1:create": "wrangler d1 create an-db",
"d1:migrate": "wrangler d1 migrations apply an-db",
"d1:execute": "wrangler d1 execute an-db --file=./migrations/0001_initial_schema.sql",
"deploy": "npm run worker:deploy"
},
"dependencies": {
"@crawlee/playwright": "^3.15.1",
"@mendable/firecrawl-js": "^4.3.4",
"@openrouter/sdk": "^0.9.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"axios": "^1.6.7",
"chart.js": "^4.5.1",
"cheerio": "^1.0.0-rc.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-fetch": "^4.0.0",
"framer-motion": "^11.0.8",
"html-to-image": "^1.11.11",
"html2canvas": "^1.4.1",
"i": "^0.3.7",
"idb": "^8.0.0",
"jspdf": "^3.0.1",
"lenis": "^1.3.11",
"lucide-react": "^0.543.0",
"next": "15.5.2",
"npm": "^11.6.2",
"rate-limiter-flexible": "^5.0.3",
"react": "19.1.0",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.1.0",
"react-error-boundary": "^4.0.13",
"react-share": "^5.2.2",
"react-toastify": "^10.0.4",
"tailwind-merge": "^3.3.1",
"url-parse": "^1.5.10",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.10",
"@cloudflare/workers-types": "^4.20250527.0",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/url-parse": "^1.4.11",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.8",
"typescript": "^5",
"@opennextjs/cloudflare": "^1.11.0",
"wrangler": "^4.45.3"
},
"optionalDependencies": {
"sharp": "^0.33.5"
}
}