-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.07 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "jstar-platform",
"version": "0.1.0",
"private": true,
"main": "src/orchestrator.ts",
"scripts": {
"dev": "next dev -p 5782",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"embed-site": "tsx src/scripts/embed-site.ts",
"update-nav": "tsx src/scripts/populate-navigation.ts",
"update-sections": "tsx src/scripts/populate-sections.ts",
"db:sync-nav": "tsx src/scripts/populate-navigation.ts && tsx src/scripts/populate-sections.ts",
"db:seed": "npx prisma db seed",
"db:embeddings": "npm run db:sync-nav && npm run embed-site",
"db:reset": "npx prisma db push --force-reset && npm run db:seed && npm run db:embeddings",
"postinstall": "prisma generate",
"review": "tsx src/orchestrator.ts",
"test:local": "dotenv -e .env.local -- tsx src/orchestrator.ts",
"test:dry": "dotenv -e .env.local -- tsx src/test-local.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.53",
"@ai-sdk/google": "^2.0.44",
"@ai-sdk/groq": "^2.0.33",
"@ai-sdk/openai": "^2.0.85",
"@ai-sdk/openai-compatible": "^1.0.28",
"@ai-sdk/react": "^2.0.104",
"@babel/generator": "^7.28.5",
"@babel/parser": "^7.28.5",
"@babel/traverse": "^7.28.5",
"@google/generative-ai": "^0.21.0",
"@octokit/rest": "^21.1.1",
"@prisma/client": "^6.16.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@tanstack/react-query": "^5.89.0",
"@types/prismjs": "^1.26.5",
"@workos-inc/authkit-nextjs": "^2.11.1",
"@workos-inc/node": "^7.74.2",
"ai": "^5.0.112",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"googleapis": "^166.0.0",
"gray-matter": "^4.0.3",
"idb": "^8.0.3",
"katex": "^0.16.25",
"lucide-react": "^0.544.0",
"mermaid": "^11.12.2",
"motion": "^12.23.24",
"next": "15.5.7",
"next-auth": "^4.24.11",
"next-mdx-remote": "^5.0.0",
"prismjs": "^1.30.0",
"react": "19.1.2",
"react-dom": "19.1.2",
"react-markdown": "^10.1.0",
"react-player": "^3.3.3",
"react-textarea-autosize": "^8.5.9",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.0.0",
"remark-html": "^16.0.1",
"remark-math": "^6.0.0",
"remarkable": "^2.0.1",
"resend": "^6.1.0",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"youtube-transcript": "^1.2.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/remarkable": "^2.0.8",
"dotenv-cli": "^7.4.0",
"eslint": "^9",
"eslint-config-next": "15.5.7",
"prisma": "^6.16.1",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5"
}
}