-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:dev": "npx dotenv -e .env.local -- prisma migrate dev",
"db:push": "npx dotenv -e .env.local -- prisma db push",
"migrate:reset": "npx dotenv -e .env.local -- prisma migrate reset",
"db:seed": "npx dotenv -e .env.local -- prisma db seed",
"prisma:generate": "npx dotenv -e .env.local -- prisma generate",
"prisma:studio": "npx dotenv -e .env.local -- prisma studio",
"production:build": "npx prisma generate && npx prisma migrate deploy && next build",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/webhook/stripe"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@nextui-org/react": "^2.3.6",
"@prisma/client": "^5.14.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"bad-words": "^3.0.4",
"eslint": "8.34.0",
"eslint-config-next": "^13.4.13",
"framer-motion": "^10.15.0",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"openai": "^4.47.1",
"raw-body": "^2.5.2",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"stripe": "^12.2.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/bad-words": "^3.0.1",
"autoprefixer": "^10.4.14",
"dotenv-cli": "^7.0.0",
"postcss": "^8.4.27",
"prisma": "^4.10.1",
"tailwindcss": "^3.3.3"
}
}