-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.3 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.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
{
"name": "bidmaster-hub",
"version": "0.4.1",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"dev:turbopack": "next dev --turbopack --port 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:reset": "echo 'Run the SQL commands from database/schema.sql in your Supabase dashboard'",
"type-check": "tsc --noEmit",
"create-demo": "node scripts/create-demo-account.js",
"test:crawlers": "node scripts/test-crawlers-simple.js",
"test:crawlers:full": "node scripts/test-crawlers.js",
"test:crawlers:advanced": "tsx scripts/test-crawlers-advanced.ts",
"benchmark:crawlers": "tsx scripts/benchmark-crawlers.ts",
"scrape:test": "curl -X POST http://localhost:3000/api/scrape -H 'Content-Type: application/json' -d '{\"searchTerm\":\"react developer\",\"maxResults\":3}'",
"scrape:stats": "curl http://localhost:3000/api/scrape/stats",
"scrape:cleanup": "curl -X POST http://localhost:3000/api/scrape/cleanup -H 'Content-Type: application/json' -d '{\"dryRun\":true}'",
"scrape:benchmark": "npm run benchmark:crawlers",
"scrape:validate": "npm run test:crawlers && npm run test:crawlers:advanced",
"analyze:project": "tsx scripts/analyze-project.ts",
"cleanup:dry-run": "tsx scripts/cleanup-unused.ts --dry-run",
"cleanup:execute": "tsx scripts/cleanup-unused.ts --execute",
"test:analysis": "vitest run scripts/__tests__",
"test:analysis:watch": "vitest watch scripts/__tests__",
"test:analysis:coverage": "vitest run --coverage scripts/__tests__"
},
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.58",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.50.5",
"@tanstack/react-query": "^5.82.0",
"@tanstack/react-query-devtools": "^5.82.0",
"@tanstack/react-table": "^8.21.3",
"cheerio": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.0",
"framer-motion": "^12.23.3",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"puppeteer-core": "^24.12.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.4",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.7",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.8",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5",
"vitest": "^4.0.8"
}
}