-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
90 lines (90 loc) · 2.65 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
90
{
"dependencies": {
"@auth/prisma-adapter": "^1.0.17",
"@e2b/sdk": "^0.11.0",
"@langchain/community": "^0.0.21",
"@langchain/openai": "^0.0.13",
"@octokit/app": "^14.0.2",
"@prisma/client": "^5.6.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"@t3-oss/env-nextjs": "^0.7.1",
"@tremor/react": "^3.13.1",
"bufferutil": "^4.0.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"crypto": "^1.0.1",
"encoding": "^0.1.13",
"framer-motion": "^10.16.16",
"graphql": "^16.8.1",
"ignore": "^5.3.0",
"langchain": "^0.1.9",
"lucide-react": "^0.300.0",
"next": "^14.1.0",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"parse-diff": "^0.11.1",
"prisma": "^5.6.0",
"react": "^18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"serpapi": "^2.0.0",
"sharp": "^0.32.6",
"sonner": "^1.3.1",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"utf-8-validate": "^6.0.3",
"weaviate-ts-client": "^2.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@octokit/types": "^12.3.0",
"@planetscale/database": "^1.11.0",
"@rubriclab/eslint-config": "latest",
"@rubriclab/prettier-config": "latest",
"@rubriclab/tailwind-config": "latest",
"@rubriclab/typescript-config": "latest",
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.1",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.15",
"@types/web": "^0.0.133",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"autoprefixer": "^10.4.16",
"bun-types": "^1.0.12",
"dotenv-cli": "5.0.0",
"eslint": "^8.53.0",
"npm-check-updates": "^16.14.6",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"stripe": "^14.5.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2"
},
"license": "AGPL-3.0-or-later",
"name": "maige",
"private": false,
"scripts": {
"bleed": "ncu -u && bun i",
"build": "next build",
"db:push": "prisma db push",
"db:studio": "dotenv -e .env.local -- prisma studio",
"dev": "next dev",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.json,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.cjs,.mjs,.json,.ts,.tsx --fix",
"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"
},
"version": "0.1.0"
}