-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.4 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "docubot",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"tsc": "tsc --noEmit --skipLibCheck --noErrorTruncation",
"lint": "next lint",
"fix": "next lint --fix",
"check": "prettier --check .",
"format": "prettier --write .",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"prepare": "husky install",
"deploy": "vercel",
"prod": "vercel --prod"
},
"dependencies": {
"@clerk/elements": "^0.11.0",
"@clerk/nextjs": "^5.2.6",
"@clerk/themes": "^2.1.13",
"@firebase/analytics": "^0.10.6",
"@firebase/app": "^0.10.7",
"@firebase/auth": "^1.7.6",
"@firebase/firestore": "^4.6.4",
"@firebase/storage": "^0.12.6",
"@heroicons/react": "^2.1.5",
"@langchain/community": "^0.2.20",
"@langchain/core": "^0.2.18",
"@langchain/openai": "^0.2.5",
"@langchain/pinecone": "^0.0.8",
"@next/third-parties": "^14.2.5",
"@pinecone-database/pinecone": "^3.0.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@react-pdf/renderer": "^3.4.4",
"@sentry/nextjs": "^8.26.0",
"@sentry/node": "^8.22.0",
"@stripe/stripe-js": "^4.1.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"daisyui": "^4.12.10",
"firebase-admin": "^12.3.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.2.11",
"lucide-react": "^0.419.0",
"next": "14.2.5",
"next-themes": "^0.3.0",
"pdf-parse": "^1.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-markdown": "^9.0.1",
"react-pdf": "^9.1.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"stripe": "^16.5.0",
"svix": "^1.29.0",
"tailwind-merge": "^2.4.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"commitlint": "^19.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.1",
"jest": "^29.7.0",
"jest-diff": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "2.5.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.6",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}