-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.72 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
{
"name": "frontier-llm-dashboard",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"vercel-build": "npm run db:setup && next build",
"start": "next start",
"db:migrate": "tsx scripts/db-migrate.ts",
"db:migrate:dev": "tsx scripts/db-migrate.ts",
"db:generate": "prisma generate",
"db:setup": "npm run db:generate && npm run db:migrate && npm run db:seed",
"db:seed": "tsx prisma/seed.ts",
"demo:seed": "tsx scripts/demo-seed.ts",
"ingest": "tsx scripts/ingest.ts",
"digest": "tsx scripts/digest.ts",
"sweep:daily": "tsx scripts/sweep-daily.ts",
"sources:list": "tsx scripts/sources.ts list",
"sources:enable": "tsx scripts/sources.ts enable",
"sources:disable": "tsx scripts/sources.ts disable",
"test": "vitest run"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.7.0",
"@prisma/client": "^7.7.0",
"better-sqlite3": "^12.9.0",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"lucide-react": "^0.548.0",
"next": "^16.2.3",
"openai": "^6.34.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rss-parser": "^3.13.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"jsdom": "^29.0.2",
"prisma": "^7.7.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}