forked from solana-labs/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.53 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@blockworks-foundation/mango-client": "^3.6.7",
"@bonfida/spl-name-service": "0.1.30",
"@cloudflare/stream-react": "^1.2.0",
"@coral-xyz/anchor": "^0.30.1",
"@metamask/jazzicon": "^2.0.0",
"@metaplex-foundation/mpl-token-metadata": "^1.1.0",
"@metaplex/js": "^4.12.0",
"@noble/hashes": "^1.5.0",
"@onsol/tldparser": "^0.6.5",
"@project-serum/serum": "^0.13.61",
"@react-hook/debounce": "^4.0.0",
"@react-hook/previous": "^1.0.1",
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-account-compression": "^0.1.8",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.66.6",
"@solflare-wallet/utl-sdk": "^1.4.0",
"@types/bn.js": "5.1.0",
"axios": "^0.28.0",
"bignumber.js": "^9.0.2",
"bn.js": "5.2.1",
"bs58": "^4.0.1",
"change-case": "^5.4.4",
"chart.js": "^4.3.0",
"classnames": "^2.3.1",
"cross-fetch": "^3.1.5",
"elfy": "^1.0.0",
"eslint": "8.39.0",
"eslint-config-next": "14.2.5",
"humanize-duration-ts": "^2.1.1",
"moment": "^2.29.4",
"next": "14.2.5",
"p-limit": "^3.1.0",
"pako": "^2.1.0",
"react": "18.3.1",
"react-chartjs-2": "^5.2.0",
"react-content-loader": "^6.1.0",
"react-countup": "^6.4.0",
"react-dom": "18.3.1",
"react-error-boundary": "^4.0.11",
"react-feather": "^2.0.10",
"react-json-view": "^1.21.3",
"react-moment": "^1.1.3",
"react-select": "^4.3.1",
"superstruct": "^0.15.3",
"swr": "^2.2.0",
"tweetnacl": "^1.0.3",
"typescript": "5.0.4",
"use-async-effect": "^2.2.7",
"use-tab-visibility": "^1.0.9",
"web3js-experimental": "npm:@solana/web3.js@2.0.0-rc.0"
},
"devDependencies": {
"@solana/eslint-config-solana": "^1.0.1",
"@solana/prettier-config-solana": "^0.0.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/bootstrap": "^5.2.6",
"@types/bs58": "4.0.1",
"@types/chart.js": "^2.9.34",
"@types/node": "18.16.3",
"@types/pako": "^2.0.3",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-select": "3.1.2",
"@types/testing-library__jest-dom": "5.14.5",
"bootstrap": "^5.1.3",
"eslint-plugin-testing-library": "^5.10.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"sass": "^1.53.0"
},
"prettier": "@solana/prettier-config-solana",
"browserslist": {
"production": [
">0.2% and supports bigint and not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"supports bigint"
]
},
"pnpm": {
"overrides": {
"avsc": "git://github.com/Irys-xyz/avsc#a730cc8018b79e114b6a3381bbb57760a24c6cef",
"cross-fetch": "^3.1.5",
"node-fetch": "^2.6.9",
"uuid": "^9.0.0"
}
}
}