forked from phantom/eth_sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "@phantom-labs/sandbox",
"version": "1.0.0",
"description": "The official CodeSandbox for learning how to interact with Phantom Wallet.",
"license": "MIT",
"keywords": [
"phantom",
"phantom wallet",
"phantom-wallet",
"codesandbox",
"solana",
"ethereum",
"crypto",
"blockchain",
"love"
],
"main": "src/index.tsx",
"dependencies": {
"@web3-onboard/core": "^2.12.1",
"@web3-onboard/injected-wallets": "^2.4.0",
"@web3-onboard/phantom": "^2.0.0-alpha.1",
"@web3-onboard/react": "^2.5.3",
"ethers": "^5.7.2"
},
"devDependencies": {
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.25",
"@vitejs/plugin-react": "^3.0.0",
"typescript": "^4.4.3",
"vite": "^4.0.3",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.3"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.5"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}