-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"private": true,
"description": "An example project for NextAuth.js with Next.js",
"repository": "https://github.com/nextauthjs/next-auth-example.git",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"homepage": "https://next-auth-example.vercel.app",
"scripts": {
"dev:wss": "cross-env PORT=3001 tsx watch ./server/ws.dev.ts --tsconfig tsconfig.server.json",
"dev:next": "next dev",
"dev": "npx prisma migrate dev && run-p dev:*",
"build": "next build",
"start": "next start"
},
"author": "Iain Collins <me@iaincollins.com>",
"contributors": [
"Balázs Orbán <info@balazsorban.com>",
"Nico Domino <yo@ndo.dev>",
"Lluis Agusti <hi@llu.lu>"
],
"dependencies": {
"@prisma/client": "^5.6.0",
"@trpc/client": "^10.44.1",
"@trpc/next": "^10.44.1",
"@trpc/server": "^10.44.1",
"@web3modal/wagmi": "^3.2.0",
"ethers": "^5.7.1",
"next": "latest",
"next-auth": "^4.12.2",
"nodemailer": "^6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"siwe": "2.1.4",
"superjson": "^2.2.1",
"tsx": "^4.2.0",
"viem": "^1.18.6",
"wagmi": "^1.4.5",
"ws": "^7.4.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^17",
"@types/react": "^18.0.15",
"@types/ws": "^8.2.0",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.0.4"
}
}