-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.3 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
{
"name": "dapp-template",
"version": "0.1.0",
"private": true,
"description": "A template to start building a Dapps on EVM",
"author": {
"name": "Kevo",
"email": "akerimberdi@gmail.com",
"url": "https://github.com/fac3m4n"
},
"license": "MIT",
"homepage": "https://github.com/fac3m4n/dapp-template",
"repository": {
"type": "git",
"url": "https://github.com/fac3m4n/dapp-template.git"
},
"bugs": {
"url": "https://github.com/fac3m4n/dapp-template/issues"
},
"keywords": [
"dapp",
"template",
"shadcn",
"ui",
"nextjs",
"evm",
"web3",
"ethereum",
"solidity",
"typescript",
"wagmi",
"viem",
"rainbowkit"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@rainbow-me/rainbowkit": "^2.2.0",
"@tanstack/react-query": "^5.60.2",
"@uniswap/sdk-core": "^5.9.0",
"@uniswap/v2-sdk": "^4.6.2",
"burner-connector": "^0.0.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"geist": "^1.3.1",
"lucide-react": "^0.456.0",
"next": "15.0.3",
"next-nprogress-bar": "^2.3.15",
"next-themes": "^0.4.3",
"react": "^18",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"viem": "^2.21.45",
"wagmi": "^2.12.32",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"abitype": "^1.0.6",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"type-fest": "^4.27.0",
"typescript": "^5"
}
}