-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.25 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
65
66
67
68
69
70
71
{
"name": "worm-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"prettier": "prettier -w --ignore-path .gitignore \"**/*.+(js|jsx|ts|tsx|json|css)\" --plugin prettier-plugin-tailwindcss",
"prettier:format": "npm run prettier -- --list-different",
"prettier:apply": "npm run prettier -- --write",
"lint:fix": "eslint --fix .",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@base-org/account": "^2.5.0",
"@metamask/sdk": "^0.34.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3",
"@rainbow-me/rainbowkit": "^2.2.10",
"@safe-global/safe-apps-provider": "^0.18.6",
"@safe-global/safe-apps-sdk": "^9.1.0",
"@tabler/icons-react": "^3.35.0",
"@tanstack/react-query": "^5.90.12",
"@uniswap/permit2-sdk": "^1.4.0",
"@uniswap/universal-router-sdk": "^5.1.0",
"@walletconnect/ethereum-provider": "^2.23.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"ethers": "^6.15.0",
"motion": "^12.23.24",
"next": "^16.0.1",
"poseidon-lite": "^0.3.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-use-measure": "^2.1.7",
"recharts": "2.15.4",
"resize-observer-polyfill": "^1.5.1",
"swiper": "^12.0.3",
"tailwind-merge": "^3.3.1",
"vaul": "^1.1.2",
"viem": "~2.41.2",
"wagmi": "^3.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}