forked from nsbradford/ai-devtool-leaderboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.07 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.07 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
{
"name": "ai-leaderboard",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.22.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"trigger:dev": "npx trigger.dev@latest dev",
"trigger:deploy": "npx trigger.dev@latest deploy",
"backfill": "tsx scripts/backfill.ts",
"backfill-bot-reviews": "tsx scripts/backfill-bot-reviews.ts",
"backfill-star-counts": "tsx scripts/backfill-star-counts.ts",
"backfill-active-repos": "tsx scripts/backfill-active-repos.ts",
"setup-db": "tsx scripts/setup-database.ts"
},
"dependencies": {
"@google-cloud/bigquery": "^7.0.0",
"@neondatabase/serverless": "^0.9.0",
"@octokit/app": "^16.0.1",
"@octokit/auth-app": "^8.0.2",
"@octokit/core": "^7.0.3",
"@octokit/graphql": "^9.0.1",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toggle-group": "^1.1.10",
"@trigger.dev/sdk": "^3.3.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-time-format": "^4.1.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.0.0",
"lucide-react": "^0.525.0",
"next": "15.5.7",
"next-themes": "^0.4.6",
"octokit": "^5.0.3",
"react": "^19.2.1",
"react-day-picker": "^9.8.0",
"react-dom": "^19.2.1",
"recharts": "^3.1.0",
"swr": "^2.3.4",
"tailwind-merge": "^3.3.1",
"ts-node": "^10.9.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/d3-time-format": "^4.0.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/yargs": "^17.0.33",
"eslint": "^9",
"eslint-config-next": "15.5.7",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"trigger.dev": "^3.3.17",
"tsx": "^4.7.0",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
}
}