-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "react-solana",
"version": "0.12.9",
"description": "React utilities for Solana",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:sultandilaram/react-solana.git",
"license": "MIT",
"scripts": {
"test": "mv ./src/index.ts ./src/_index.ts",
"start": "react-scripts start",
"build": "mv ./src/_index.ts ./src/index.ts && rm -rf dist && mkdir dist && babel src --extensions \".tsx,.ts\" -d dist --copy-files --no-copy-ignored && tsc"
},
"dependencies": {
"@project-serum/anchor": "^0.25.0",
"@solana/spl-token": "^0.3.5",
"@solana/wallet-adapter-react": "^0.15.20",
"@solana/wallet-adapter-react-ui": "^0.9.18",
"@solana/wallet-adapter-wallets": "^0.19.3",
"@solana/web3.js": "^1.61.1",
"axios": "^0.27.2",
"js-sha3": "^0.8.0",
"react-base-kit": "^0.4.0",
"react-toastify": "^9.0.8",
"sass": "^1.54.9",
"typescript": "^4.8.3"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@solana/wallet-adapter-base": "^0.9.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}