-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.16 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": "next-auth-test",
"version": "0.1.0",
"packageManager": "pnpm@9.5.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && pnpm next-sitemap",
"start": "node .next/standalone/server.js",
"lint": "next lint",
"postbuild": "pnpm next-sitemap",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate dev --name init",
"db:pull": "prisma db pull",
"vercel-deploy": "prisma generate && next build",
"local:migrate": "dotenv -e .env.local -- npx prisma migrate dev",
"local:gen": "dotenv -e .env.local -- npx prisma generate",
"local:studio": "dotenv -e .env.local -- npx prisma studio",
"local:push": "dotenv -e .env.local -- npx prisma db push"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.17.0",
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.44.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"framer-motion": "11.3.23-alpha.3",
"jose": "^5.6.3",
"jsonwebtoken": "^9.0.2",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-sitemap": "^4.2.3",
"nodemailer": "^6.9.14",
"postcss": "^8.4.40",
"prisma": "^5.17.0",
"react": "^18",
"react-daum-postcode": "^3.1.3",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"react-intersection-observer": "^9.13.0",
"react-loading-skeleton": "^3.4.0",
"sharp": "^0.33.5",
"sonner": "^1.5.0",
"uuid": "^10.0.0",
"xlsx": "^0.18.5",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@egjs/flicking-plugins": "^4.7.1",
"@egjs/react-flicking": "^4.11.4",
"@types/bcryptjs": "^2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.12",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"react-icons": "^5.2.1",
"tailwindcss": "^3.4.7",
"typescript": "^5"
}
}