-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "assistants-hub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build:local": "prisma generate && prisma migrate dev && next build",
"build": "prisma generate && prisma migrate deploy && next build && prisma db seed",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.21.1",
"@auth0/nextjs-auth0": "^3.5.0",
"@aws-sdk/client-s3": "^3.569.0",
"@aws-sdk/s3-presigned-post": "^3.569.0",
"@aws-sdk/s3-request-presigner": "^3.574.0",
"@aws-sdk/signature-v4-crt": "^3.569.0",
"@google/generative-ai": "^0.8.0",
"@next/third-parties": "^14.2.3",
"@prisma/client": "5.8.1",
"@thumbmarkjs/thumbmarkjs": "^0.14.4",
"@types/react-image-crop": "^8.1.6",
"@vercel/analytics": "^1.1.2",
"@vercel/blob": "^0.22.3",
"@vercel/edge": "^1.1.1",
"apexcharts": "^3.48.0",
"aws-crt": "^1.21.2",
"aws-sdk": "^2.1614.0",
"busboy": "^1.6.0",
"flowbite": "^2.4.1",
"flowbite-react": "^0.10.1",
"google": "link:@next/third-parties/google",
"groq-sdk": "^0.3.3",
"highlight.js": "^11.9.0",
"marked-react": "^2.0.0",
"next": "14.2.4",
"nodemailer": "^6.9.13",
"openai": "^4.42.0",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-highlight": "^0.15.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-image-crop": "^11.0.5",
"swr": "^2.2.4",
"tailwind-merge": "^2.2.0",
"ts-node": "^10.9.2",
"typewriter-effect": "^2.21.0",
"ulidx": "^2.3.0"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.8.1",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}