-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "next-dapp",
"description": "Next Web3 dApp template",
"author": "Matteo Celani",
"version": "0.4.5",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --write",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@rainbow-me/rainbowkit": "^2.2.2",
"@tanstack/react-query": "^5.64.2",
"@uniswap/sdk-core": "^7.7.2",
"@uniswap/smart-order-router": "^4.20.10",
"@uniswap/v3-sdk": "^3.25.2",
"@wagmi/cli": "^2.2.0",
"@wagmi/connectors": "^2.3.0",
"@wagmi/core": "^2.16.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"axios": "^1.4.0",
"bignumber.js": "^9.0.1",
"ethers": "^6.13.5",
"graphql": "^15.10.1",
"graphql-tag": "^2.12.6",
"next": "^15.1.5",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"sharp": "^0.33.5",
"simple-zustand-devtools": "^1.1.0",
"wagmi": "^2.14.8",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/react-icons": "^3.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.5",
"lodash.merge": "^4.6.2",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"overrides": {
"i18next": "23.11.5"
}
}