-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.64 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.64 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@hyperlane-xyz/explorer",
"description": "An interchain explorer for the Hyperlane protocol and network.",
"version": "12.0.0",
"author": "J M Rossy",
"dependencies": {
"@ethersproject/abi": "^5.8.0",
"@ethersproject/abstract-provider": "^5.8.0",
"@ethersproject/abstract-signer": "^5.8.0",
"@ethersproject/bignumber": "^5.8.0",
"@ethersproject/bytes": "^5.8.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/networks": "^5.8.0",
"@ethersproject/properties": "^5.8.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/transactions": "^5.8.0",
"@ethersproject/web": "^5.8.0",
"@headlessui/react": "^2.2.0",
"@hyperlane-xyz/core": "11.3.1",
"@hyperlane-xyz/registry": "24.3.0",
"@hyperlane-xyz/sdk": "33.0.2",
"@hyperlane-xyz/utils": "33.0.2",
"@hyperlane-xyz/widgets": "33.0.2",
"@tanstack/query-core": "^5.71.3",
"@tanstack/react-query": "^5.62.3",
"@vercel/og": "^0.8.5",
"bignumber.js": "^9.1.2",
"clsx": "^2.1.1",
"ethers": "^5.8.0",
"formik": "^2.4.6",
"graphql": "^16.6.0",
"next": "16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-toastify": "^10.0.6",
"react-tooltip": "^5.26.3",
"urql": "^3.0.3",
"yaml": "^2.4.5",
"zod": "^3.21.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.967.0",
"@types/jest": "^29.5.3",
"@types/node": "^24.10.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@urql/core": "^3.0.3",
"autoprefixer": "^10.4.20",
"jest": "^29.6.3",
"oxfmt": "0.42.0",
"oxlint": "1.57.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"ts-node": "^10.9.2",
"typescript": "6.0.2"
},
"homepage": "https://www.hyperlane.xyz",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"packageManager": "pnpm@10.25.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hyperlane-xyz/hyperlane-explorer"
},
"scripts": {
"clean": "rm -rf dist cache .next",
"prebuild": "node scripts/fetch-fonts.mjs",
"fetch-fonts": "node --env-file=.env.local scripts/fetch-fonts.mjs",
"dev": "next dev",
"build": "next build",
"typecheck": "tsc",
"lint": "oxlint ./src",
"start": "next start",
"test": "jest",
"format": "oxfmt ./src"
},
"types": "dist/src/index.d.ts",
"pnpm": {
"overrides": {
"tronweb>ethers": "^6.13.5",
"ethers": "^5.7",
"sha.js": "2.4.12",
"cipher-base": "1.0.5",
"elliptic": "6.6.1",
"pbkdf2": "3.1.3",
"form-data": "4.0.4"
},
"onlyBuiltDependencies": []
}
}