-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
132 lines (132 loc) · 3.68 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "raydium-ui-v3",
"version": "0.0.1",
"author": "Solana Maintainers <[email protected]>",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"files": [
"public",
"src",
".editorconfig",
".eslintrc.json",
".gitignore",
".prettierignore",
".prettierrc",
"LICENSE",
"next.config.js",
"next-env.d.ts",
"package.json",
"README.md",
"tsconfig.json"
],
"scripts": {
"prepare": "husky install",
"clean": "shx rm -rf .next .swc lib",
"dev": "next dev --port 3002",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --pretty --noEmit"
},
"resolutions": {
"@solana/spl-token": "^0.4.8",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/web3.js": "^1.95.3",
"@solana/buffer-layout": "^4.0.1",
"decimal.js": "^10.4.3",
"bn.js": "^5.2.1"
},
"peerDependencies": {
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": ">=1.95.3"
},
"dependencies": {
"@chakra-ui/react": "^2.7.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@ledgerhq/hw-transport-webhid": "^6.29.2",
"@moongate/moongate-adapter": "^0.6.1",
"@moonpay/moonpay-js": "^0.6.1",
"@next/third-parties": "^14.2.5",
"@project-serum/serum": "^0.13.65",
"@raydium-io/raydium-sdk-v2": "0.1.80-alpha",
"@sentry/nextjs": "^8.26.0",
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-token": "^0.4.8",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-exodus": "^0.1.18",
"@solana/wallet-adapter-glow": "^0.1.18",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.31",
"@solana/wallet-adapter-slope": "^0.5.21",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "^1.95.3",
"@solflare-wallet/wallet-adapter": "^1.0.3",
"@tiplink/wallet-adapter": "^2.1.19",
"@types/big.js": "^6.1.6",
"@types/bn.js": "^5.1.1",
"@types/d3": "^7.4.0",
"@types/numeral": "^2.0.5",
"@types/react-datepicker": "^4.8.0",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@walletconnect/solana-adapter": "^0.0.5",
"@wormhole-foundation/wormhole-connect": "^0.3.21",
"axios": "^1.2.6",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"compare-versions": "^6.1.0",
"cookies-next": "^2.1.1",
"d3": "^7.6.1",
"dayjs": "^1.11.5",
"decimal.js": "^10.4.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ethers": "^5.7.2",
"focus-trap-react": "^10.2.1",
"formik": "^2.2.9",
"framer-motion": "^11.2.6",
"git": "^0.1.5",
"husky": "^8.0.3",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^7.0.1",
"immer": "^9.0.15",
"lightweight-charts": "^4.0.1",
"next": "13.3.1",
"react": "^18.0.0",
"react-day-picker": "^8.8.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.0.0",
"react-feather": "^2.0.10",
"react-i18next": "^12.2.2",
"react-number-format": "^5.4.2",
"react-window": "^1.8.9",
"recharts": "^2.2.0",
"rxjs": "^7.5.6",
"swr": "^2.2.0",
"uuid": "^9.0.1",
"yup": "^0.32.11",
"zustand": "^4.1.1"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"eslint-plugin-react": "^7.31.7",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typescript": "^5.0.4"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}