forked from GabrielePicco/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.17 KB
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
{
"name": "@solana/wallet-adapter-example",
"version": "0.18.21",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "Apache-2.0",
"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"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc --build --verbose && next build",
"clean": "shx rm -rf .next .swc lib",
"dev": "NODE_OPTIONS='--inspect' next dev",
"start": "next start",
"lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint && next lint",
"export": "next export"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
"@solana/wallet-adapter-ant-design": "workspace:^0.11.26",
"@solana/wallet-adapter-base": "workspace:^",
"@solana/wallet-adapter-material-ui": "workspace:^0.16.28",
"@solana/wallet-adapter-react": "workspace:^0.15.30",
"@solana/wallet-adapter-react-ui": "workspace:^0.9.29",
"@solana/wallet-adapter-wallets": "workspace:^0.19.15",
"@solana/web3.js": "^1.73.2",
"antd": "^4.24.8",
"bs58": "^4.0.1",
"next": "^14.2.32",
"notistack": "^2.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "8.22.0",
"eslint-config-next": "^12.3.4",
"next-plugin-antd-less": "^1.8.0",
"prettier": "^2.8.4",
"shx": "^0.3.4",
"typescript": "~4.7.4"
}
}