-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 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
71
72
73
74
75
76
77
78
79
80
{
"name": "ai-nexus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc --noEmit",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --ignore-path .gitignore",
"format:check": "pnpm format --check",
"format:write": "pnpm format --write",
"validate": "pnpm format:write && pnpm lint && pnpm tsc ",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.1",
"@clerk/nextjs": "^5.3.7",
"@clerk/themes": "^2.1.25",
"@hookform/resolvers": "^3.9.0",
"@pinecone-database/pinecone": "^3.0.2",
"@prisma/client": "5.18.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@stripe/stripe-js": "^4.4.0",
"@tanstack/react-query": "4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.3.31",
"front-matter": "^4.0.2",
"lucide-react": "^0.427.0",
"mini-svg-data-uri": "^1.4.4",
"next": "14.2.5",
"next-cloudinary": "^6.11.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-loader-spinner": "^6.1.6",
"react-markdown": "^9.0.1",
"react-top-loading-bar": "^2.3.1",
"remark-gfm": "^4.0.0",
"sonner": "^1.5.0",
"stripe": "^16.9.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-accent": "^2.1.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.7",
"@types/node": "^20.16.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-plugin-react": "^7.35.0",
"husky": "^8.0.3",
"postcss": "^8.4.42",
"prettier": "^3.3.3",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.10",
"typescript": "^5"
}
}