forked from phantom/multi-chain-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (64 loc) · 1.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
{
"name": "@phantom-labs/multi-chain-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": {
"@solana/web3.js": "^1.90.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-app-rewired": "^2.2.1",
"styled-components": "^5.3.5",
"rango-sdk-basic": "^0.1.46",
"bignumber.js": "^9.1.2"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/styled-components": "^5.1.25",
"typescript": "^4.4.3",
"browserify-zlib": "^0.2.0",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"process": "^0.11.10",
"source-map-loader": "^4.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.1",
"webpack": "^5.88.0"
},
"scripts": {
"build": "tsc --build --verbose && react-app-rewired build",
"clean": "shx mkdir -p build lib && shx rm -rf build lib",
"lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
"start": "react-app-rewired start",
"test": "CI=true react-app-rewired test --passWithNoTests",
"test:watch": "react-app-rewired test --passWithNoTests",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}