forked from Bytez3/pepe-crypto-poker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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
{
"name": "poker-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@prisma/client": "^6.17.1",
"@project-serum/anchor": "^0.26.0",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.98.4",
"bs58": "^6.0.0",
"jsonwebtoken": "^9.0.2",
"next": "15.5.4",
"next-auth": "^4.24.11",
"react": "19.1.0",
"react-dom": "19.1.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.21",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"prisma": "^6.17.1",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5"
}
}