-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "aidetective",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma migrate deploy && prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@medusajs/icons": "^1.0.0",
"@medusajs/ui": "^2.0.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@pinecone-database/pinecone": "^1.1.2",
"@prisma/client": "^5.3.1",
"@stripe/stripe-js": "^2.2.2",
"@types/node": "20.6.2",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@upstash/ratelimit": "^0.4.4",
"@upstash/redis": "^1.24.3",
"autoprefixer": "10.4.15",
"axios": "^1.5.0",
"cloudinary": "^1.41.0",
"dayjs": "^1.11.10",
"eslint": "8.49.0",
"eslint-config-next": "13.4.19",
"framer-motion": "^10.16.4",
"github-slugger": "^2.0.0",
"lucide-react": "^0.292.0",
"next": "13.4.19",
"next-auth": "^4.23.1",
"openai": "^4.24.1",
"papaparse": "^5.4.1",
"postcss": "8.4.29",
"posthog-js": "^1.93.1",
"prisma": "^5.3.1",
"puppeteer": "^21.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.46.1",
"react-intersection-observer": "^9.5.3",
"sharp": "^0.33.0",
"stripe": "^14.10.0",
"swr": "^2.2.2",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"use-debounce": "^10.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@medusajs/ui-preset": "^1.0.0",
"@types/papaparse": "^5.3.9"
}
}