-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
{
"name": "@solana/wallet-adapter-nextjs-starter",
"version": "0.8.16",
"author": "Solana Maintainers <[email protected]>",
"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"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "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"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@metaplex-foundation/js": "^0.17.12",
"@mui/icons-material": "^5.11.0",
"@mui/joy": "^5.0.0-alpha.65",
"@mui/material": "^5.11.3",
"@solana/spl-token": "^0.3.6",
"@solana/wallet-adapter-base": "^0.9.20",
"@solana/wallet-adapter-react": "^0.15.26",
"@solana/wallet-adapter-react-ui": "^0.9.24",
"@solana/wallet-adapter-wallets": "^0.19.9",
"axios": "^1.2.2",
"classnames": "^2.3.2",
"jimp": "^0.16.2",
"local-storage": "^2.0.0",
"next": "^13.1.1",
"object-hash": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hot-toast": "^2.4.0",
"react-scramble": "^0.5.1",
"sass": "^1.57.1",
"scrambling-text": "^1.2.0"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typescript": "~4.7.4"
}
}