-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
89 lines (89 loc) · 2.73 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
81
82
83
84
85
86
87
88
89
{
"dependencies": {
"@auth/prisma-adapter": "^2.5.3",
"@e2b/sdk": "^0.16.2",
"@langchain/community": "^0.3.4",
"@langchain/openai": "^0.3.5",
"@octokit/app": "^15.1.0",
"@octokit/webhooks": "^13.3.0",
"@prisma/client": "^5.20.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@t3-oss/env-nextjs": "^0.11.1",
"@tremor/react": "^3.18.3",
"@upstash/ratelimit": "^2.0.3",
"bufferutil": "^4.0.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"crypto": "^1.0.1",
"encoding": "^0.1.13",
"framer-motion": "^11.11.0",
"graphql": "^16.9.0",
"ignore": "^6.0.2",
"langchain": "^0.3.2",
"lucide-react": "^0.447.0",
"next": "^14.2.14",
"next-auth": "^4.24.8",
"next-themes": "^0.3.0",
"parse-diff": "^0.11.1",
"posthog-js": "^1.166.1",
"prisma": "^5.20.0",
"react": "^18.3.1",
"react-content-loader": "^7.0.2",
"react-dom": "^18.3.1",
"resend": "^4.0.0",
"serpapi": "^2.1.0",
"sharp": "^0.33.5",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"utf-8-validate": "^6.0.4",
"weaviate-ts-client": "^2.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@octokit/types": "^13.6.1",
"@planetscale/database": "^1.19.0",
"@rubriclab/config": "*",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/web": "^0.0.168",
"autoprefixer": "^10.4.20",
"bun-types": "^1.1.29",
"dotenv-cli": "7.4.2",
"postcss": "^8.4.47",
"stripe": "^17.1.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
},
"license": "AGPL-3.0-or-later",
"name": "maige",
"private": false,
"scripts": {
"build": "next build",
"db:push": "prisma db push",
"db:studio": "dotenv -e .env.local -- prisma studio",
"dev": "next dev",
"dx:env": "f(){ infisical --env=$1 export > .env.local; }; f",
"dx:setup": "open http://localhost:3000/dev/setup && SKIP_ENV_VALIDATION=true next dev",
"dx:tunnel": "f(){ ngrok http --domain=$1 ${2:-3000}; }; f",
"postinstall": "prisma generate",
"start": "next start",
"test:engineer": "dotenv -e .env.local -- bun test engineer",
"test:weaviate": "dotenv -e .env.local -- bun test weaviate",
"vector:schema:push": "bun run ./lib/utils/embeddings/setup",
"bleed": "bun x npm-check-updates -u",
"format": "bun x biome format --write .",
"lint": "bun x biome check . && bun x biome lint .",
"lint:fix": "bun x biome check --fix --unsafe . && bun x biome lint --write --unsafe .",
"clean": "rm -rf .next && rm -rf node_modules"
},
"version": "0.1.0"
}