-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.94 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "my4x4",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev -p 3001",
"dev:email": "email dev --dir src/mailers/templates",
"postinstall": "prisma generate",
"lint": "next lint",
"seed": "npx prisma db push && npx prisma db seed",
"migrate": "npx prisma db push",
"start": "next start -p 3001",
"ci:migrate": "DATABASE_URL=$DATABASE_MIGRATION_URL npx prisma db push",
"ci:seed": "DATABASE_URL=$DATABASE_MIGRATION_URL npx prisma db seed"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.241.0",
"@aws-sdk/s3-request-presigner": "^3.241.0",
"@chakra-ui/react": "^2.5.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@highlight-run/next": "^3.1.6",
"@highlight-run/react": "^3.2.1",
"@hookform/resolvers": "^2.9.10",
"@kinde-oss/kinde-auth-nextjs": "^1.8.18",
"@next-auth/prisma-adapter": "^1.0.5",
"@phntms/next-gtm": "^0.3.0-rc1",
"@prisma/client": "^5.0.0",
"@react-email/components": "^0.0.6",
"@react-email/render": "0.0.7",
"@sendgrid/mail": "^7.7.0",
"@tanstack/react-query": "^4.20.9",
"@tanstack/react-query-devtools": "^4.20.9",
"@trpc/client": "^10.7.0",
"@trpc/next": "^10.7.0",
"@trpc/react-query": "^10.7.0",
"@trpc/server": "^10.7.0",
"@uppy/aws-s3": "^3.2.1",
"@uppy/aws-s3-multipart": "^3.5.2",
"@uppy/core": "^3.3.1",
"@uppy/dashboard": "^3.5.0",
"@uppy/drag-drop": "^3.0.2",
"@uppy/file-input": "^3.0.2",
"@uppy/progress-bar": "^3.0.2",
"@uppy/react": "^3.1.3",
"@vercel/analytics": "^1.0.0",
"@vercel/og": "0.0.27",
"aws-jwt-verify": "^4.0.0",
"cookies-next": "^2.1.1",
"cuid": "^2.1.8",
"highlight.run": "^7.3.11",
"imagekit-javascript": "^1.5.4",
"inngest": "^1.9.0",
"next": "13.4.10",
"next-auth": "^4.22.3",
"next-build-id": "^3.0.0",
"next-seo": "^6.1.0",
"next-superjson": "0.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-email": "1.9.3",
"react-hook-form": "^7.41.5",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-youtube": "^10.1.0",
"sass": "^1.57.1",
"slate": "^0.94.1",
"slate-react": "^0.97.1",
"superjson": "1.12.2",
"ts-node": "^10.9.1",
"use-debounce": "^9.0.2",
"uuid": "^9.0.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.1.4",
"prisma": "^5.0.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"ct3aMetadata": {
"initVersion": "6.10.3"
},
"prisma": {
"seed": "node --no-warnings=ExperimentalWarning --loader ts-node/esm prisma/seed.ts"
}
}