-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.32 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
100
101
102
103
104
105
106
107
{
"name": "arcmindai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_OPTIONS='--max-old-space-size=4096' next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio",
"postinstall": "prisma generate",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
},
"dependencies": {
"@google/genai": "^2.12.0",
"@hookform/resolvers": "^5.4.0",
"@langchain/core": "^1.2.3",
"@langchain/google-genai": "^2.2.0",
"@langchain/openai": "^1.5.5",
"@lottiefiles/dotlottie-react": "^0.19.10",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.18.0",
"@radix-ui/react-accordion": "^1.2.17",
"@radix-ui/react-checkbox": "^1.3.8",
"@radix-ui/react-collapsible": "^1.1.17",
"@radix-ui/react-dialog": "^1.1.20",
"@radix-ui/react-dropdown-menu": "^2.1.21",
"@radix-ui/react-label": "^2.1.12",
"@radix-ui/react-navigation-menu": "^1.2.19",
"@radix-ui/react-select": "^2.3.4",
"@radix-ui/react-separator": "^1.1.12",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.4",
"@radix-ui/react-tooltip": "^1.2.13",
"@styleglide/kit-view-provider": "^0.0.8",
"@types/jsonwebtoken": "^9.0.10",
"@types/react-syntax-highlighter": "^15.5.13",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"axios": "^1.18.1",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.10.0",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dodopayments": "^2.42.2",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.42.2",
"get-nonce": "^1.0.1",
"googleapis": "^171.4.0",
"html-to-image": "^1.11.13",
"input-otp": "^1.4.2",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.1",
"lottie-react": "^2.4.1",
"lucide-react": "^0.575.0",
"mermaid": "^11.16.0",
"nanoid": "^6.0.0",
"next": "16.2.10",
"next-auth": "^4.24.14",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.13",
"prismjs": "^1.30.0",
"prom-client": "^15.1.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-fast-marquee": "^1.6.5",
"react-hook-form": "^7.82.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.1.9",
"react-simple-code-editor": "^0.14.1",
"react-syntax-highlighter": "^16.1.1",
"sonner": "^2.0.7",
"standardwebhooks": "^1.0.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcrypt": "^6.0.0",
"@types/d3": "^7.4.3",
"@types/node": "^26",
"@types/nodemailer": "^7.0.5",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"husky": "^9.1.7",
"lint-staged": "^17.1.0",
"prettier": "^3.8.1",
"prisma": "^6.19.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}