-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
{
"name": "chatgpt-prompt-hub",
"displayName": "ChatGPT Prompt Hub",
"url": "https://chatgptprompthub.vercel.app",
"version": "1.0.0",
"description": "A community for ChatGPT prompts.",
"keywords": [
"ChatGPT",
"Prompt Engineering",
"Community"
],
"license": "MIT",
"author": "Allen Li",
"scripts": {
"dev": "next",
"build": "prisma generate && next build",
"db": "prisma migrate deploy && prisma generate && prisma db seed",
"start": "next start",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.1",
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@giscus/react": "^2.2.8",
"@heroicons/react": "^2.0.18",
"@iconify/react": "^4.1.0",
"@next-auth/prisma-adapter": "1.0.3",
"@prisma/client": "^4.10.1",
"@vercel/analytics": "^1.0.1",
"classnames": "^2.3.2",
"cloudinary": "^1.37.0",
"emoji-mart": "^5.5.2",
"next": "^13.4.6",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.44.3",
"react-markdown": "8.0.2",
"slugify": "^1.6.6",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.0",
"wrangler": "^3.3.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230717.1",
"@types/next-auth": "3.13.0",
"@types/node": "16.11.26",
"@types/react": "17.0.44",
"@types/uuid": "^9.0.2",
"autoprefixer": "^10.4.14",
"daisyui": "^3.1.0",
"postcss": "^8.4.24",
"prisma": "^5.0.0",
"tailwindcss": "^3.3.2",
"ts-node": "10.7.0",
"tsx": "^3.12.7",
"typescript": "4.6.3",
"vitest": "^0.33.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}