-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.06 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
72
73
74
75
76
77
78
79
{
"name": "poolshark-interface",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit --skipLibCheck",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.7.3",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.12",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@rainbow-me/rainbowkit": "^1.3.6",
"@swing.xyz/sdk": "^0.47.7",
"@usedapp/core": "^1.2.2",
"@vercel/analytics": "^1.0.1",
"@vercel/speed-insights": "^1.0.1",
"alchemy-sdk": "^3.1.0",
"axios": "^1.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"ethers": "^5.7.2",
"fuels": "^0.17.0",
"graphql": "^16.6.0",
"i": "^0.3.7",
"jsbd": "^0.0.11",
"jsbi": "^4.3.0",
"lodash": "^4.17.21",
"lucide-react": "^0.314.0",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"rc-toastr": "^1.3.4",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.1",
"react-toastify": "^9.1.1",
"sonner": "^1.3.1",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.1",
"tiny-variant": "^0.0.0",
"viem": "^1.21.4",
"wagmi": "^1.4.13",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/react": "18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.12",
"eslint": "8.24.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.16",
"prettier": "3.0.0",
"source-map-loader": "^4.0.1",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": ">=5.0.4"
}
}