-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.05 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
{
"name": "vector-verse",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rimraf .next/ '**/generated/' dist/",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"postinstall": "prisma generate",
"db:generate": "pnpm prisma generate",
"db:migrate": "pnpm prisma migrate dev",
"db:deploy": "pnpm prisma migrate deploy",
"db:reset": "pnpm prisma migrate reset",
"db:seed": "pnpm prisma db seed",
"db:format": "pnpm prisma format",
"db:format:check": "pnpm prisma format --check",
"db:studio": "pnpm prisma studio"
},
"packageManager": "[email protected]",
"dependencies": {
"@auth/prisma-adapter": "^2.1.0",
"@aws-sdk/client-s3": "^3.606.0",
"@hookform/resolvers": "^3.4.2",
"@langchain/community": "^0.3.39",
"@langchain/core": "^0.3.43",
"@langchain/groq": "^0.2.1",
"@langchain/textsplitters": "^0.1.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^6.0.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.4",
"@tabler/icons-react": "^3.7.0",
"@tanstack/react-table": "^8.17.3",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^4.19.0",
"@tensorflow/tfjs-converter": "^3.6.0",
"@tensorflow/tfjs-core": "^3.6.0",
"@tensorflow/tfjs-node": "^4.19.0",
"@tuesdaycrowd/sentence-transformers": "^1.0.1",
"axios": "^1.7.2",
"bullmq": "^5.7.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.2.12",
"langchain": "^0.3.20",
"lucide-react": "^0.379.0",
"mime": "^4.0.3",
"mini-svg-data-uri": "^1.4.4",
"next": "14.2.3",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.1",
"pgvector": "^0.1.8",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.3.5",
"react-hook-form": "^7.51.5",
"react-icons": "^5.2.1",
"redis": "^4.6.14",
"sharp": "^0.33.4",
"simplex-noise": "^4.0.3",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zustand": "^5.0.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/node-fetch": "^2.6.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^16.1.2",
"postcss": "^8",
"prettier": "^3.3.1",
"prisma": "^6.0.1",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}