-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "geeg",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm run prisma:migrate:deploy && next dev",
"start": "pnpm run prisma:migrate:deploy && next start",
"build": "next build",
"lint": "next lint",
"format": "prettier --write . & prisma format",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:status": "prisma migrate status",
"prisma:generate": "prisma generate",
"typechain:generate": "typechain --target=ethers-v6 abis/**/*.json --out-dir=contracts/",
"postinstall": "npm run prisma:generate && npm run typechain:generate"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.19.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@reown/appkit": "^1.0.2",
"@reown/appkit-adapter-wagmi": "^1.0.2",
"@tanstack/react-query": "^5.56.2",
"@wagmi/core": "^2.13.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"ethers": "^6.13.2",
"jotai": "^2.10.0",
"jotai-tanstack-query": "^0.8.8",
"lucide-react": "^0.441.0",
"next": "14.2.13",
"prisma": "^5.19.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.21.10",
"wagmi": "^2.12.12",
"zod": "^3.23.8"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.1",
"typechain": "^8.3.2",
"typescript": "^5"
}
}