-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.06 KB
/
package.json
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
{
"name": "rulespal",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "node -r dotenv/config ./scripts/seed.js",
"test": "jest",
"test:watch": "jest --watch",
"geeklist": "npx tsx scripts/geeklist.ts",
"tops": "npx tsx scripts/tops.ts",
"thumbs": "npx tsx scripts/thumbs.ts",
"embeddings": "npx tsx scripts/embeddings.ts"
},
"dependencies": {
"@ai-sdk/groq": "^0.0.1",
"@ai-sdk/openai": "^0.0.67",
"@radix-ui/react-dialog": "^1.1.2",
"@types/mdast": "^4.0.4",
"@vercel/analytics": "^1.3.1",
"ai": "^3.4.9",
"clsx": "^2.1.1",
"lucide-react": "^0.452.0",
"mdast-util-heading-range": "^4.0.0",
"next": "15.0.0-rc.1",
"next-themes": "^0.3.0",
"openai": "^4.67.3",
"posthog-js": "^1.167.0",
"raw-loader": "^4.0.2",
"react": "19.0.0-rc-cd22717c-20241013",
"react-dom": "19.0.0-rc-cd22717c-20241013",
"react-markdown": "^9.0.1",
"react-textarea-autosize": "^8.5.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-toc": "^9.0.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/parser": "^8.8.1",
"autoprefixer": "^10.4.19",
"csv-parser": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.15",
"eslint-plugin-tailwindcss": "^3.17.5",
"jest": "^29.7.0",
"node-fetch": "^3.3.2",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3"
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}