-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "next13-beta-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"ts-node": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\""
},
"prisma": {
"seed": "npm run ts-node --transpile-only prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.279.0",
"@aws-sdk/s3-request-presigner": "^3.279.0",
"@hookform/resolvers": "^2.9.11",
"@material-tailwind/react": "^1.2.4",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.1.1",
"@prisma/client": "^4.12.0",
"@radix-ui/react-avatar": "1.0.1",
"@stripe/react-stripe-js": "^1.16.2",
"@stripe/stripe-js": "^1.46.0",
"@tanstack/react-query": "^4.20.4",
"@trpc/client": "^10.7.0",
"@trpc/next": "^10.7.0",
"@trpc/react-query": "^10.7.0",
"@trpc/server": "^10.7.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"eslint": "8.31.0",
"eslint-config-next": "^13.1.1",
"lodash": "^4.17.21",
"next": "^13.1.1",
"next-auth": "^4.19.2",
"raw-body": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.2",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-intersection-observer": "^9.4.1",
"react-loader-spinner": "^5.3.4",
"stripe": "^11.6.0",
"superjson": "^1.12.1",
"tailwind-merge": "^1.8.1",
"ts-node": "^10.9.1",
"typescript": "4.9.4",
"uuid": "^9.0.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"prisma": "^4.12.0",
"tailwindcss": "^3.2.4"
},
"overrides": {
"json5": "^2.2.2"
}
}