forked from nicholashamilton/firebase-jwt-next-prisma-trpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "firebase-jwt-next-prisma-trpc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "^4.15.0",
"@tanstack/react-query": "^4.29.12",
"@trpc/client": "^10.28.1",
"@trpc/next": "^10.28.1",
"@trpc/react-query": "^10.28.1",
"@trpc/server": "^10.28.1",
"@types/node": "^20.2.5",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"firebase": "^9.22.1",
"firebase-admin": "^11.9.0",
"next": "^13.5.4",
"postcss": "^8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^9.1.3",
"sass": "^1.62.1",
"superjson": "^1.12.3",
"tailwindcss": "3.3.2",
"typescript": "5.0.4",
"uuid": "^9.0.0",
"zod": "^3.22.3"
},
"devDependencies": {
"@types/uuid": "^9.0.1"
}
}