-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.47 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "sync-tube",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --no-error-on-unmatched-pattern --write \"src/**/*.{ts,tsx}\" *.{ts,tsx}",
"postinstall": "pnpm prisma migrate deploy && pnpm prisma generate"
},
"dependencies": {
"@auth/core": "^0.14.0",
"@auth/prisma-adapter": "^1.0.2",
"@hookform/resolvers": "^3.3.1",
"@novu/node": "^0.19.0",
"@novu/notification-center": "^0.19.0",
"@prisma/client": "^5.3.1",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@supabase/supabase-js": "^2.36.0",
"@t3-oss/env-nextjs": "^0.6.1",
"@tanstack/react-query": "^4.35.3",
"@tiptap/core": "^2.1.11",
"@tiptap/extension-heading": "^2.1.11",
"@tiptap/extension-list-item": "^2.1.11",
"@tiptap/extension-placeholder": "^2.1.11",
"@tiptap/extension-text-style": "^2.1.11",
"@tiptap/pm": "^2.1.11",
"@tiptap/react": "^2.1.11",
"@tiptap/starter-kit": "^2.1.11",
"@trpc/client": "^10.38.4",
"@trpc/next": "^10.38.4",
"@trpc/react-query": "^10.38.4",
"@trpc/server": "^10.38.4",
"@types/node": "20.6.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@uppy/core": "^3.5.0",
"@uppy/dashboard": "^3.5.3",
"@uppy/drag-drop": "^3.0.3",
"@uppy/file-input": "^3.0.3",
"@uppy/progress-bar": "^3.0.3",
"@uppy/react": "^3.1.3",
"@uppy/status-bar": "^3.2.4",
"@uppy/xhr-upload": "^3.4.0",
"autoprefixer": "10.4.15",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"dayjs": "^1.11.10",
"google-auth-library": "^9.0.0",
"googleapis": "^126.0.1",
"lodash": "^4.17.21",
"lucide-react": "^0.276.0",
"next": "13.4.19",
"next-auth": "^4.23.1",
"next-themes": "^0.2.1",
"postcss": "8.4.29",
"postgres": "^3.3.5",
"prisma": "^5.3.1",
"react": "18.2.0",
"react-day-picker": "^8.8.2",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.2",
"superjson": "^1.13.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.1",
"ts-pattern": "^5.0.5",
"typescript": "5.2.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/lodash": "^4.14.199",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "8.0.1",
"eslint-config-next": "^13.5.2",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tsx": "^3.12.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}