-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "nextjs-solana-starter-kit",
"description": "Build your own Solana dApp with NextJS and TypeScript",
"version": "0.1.0",
"author": {
"name": "Bernardo Raposo",
"email": "[email protected]",
"url": "http://bernardoraposo.com"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@solana/spl-name-service": "^0.1.4",
"@solana/spl-token": "^0.3.7",
"@solana/wallet-adapter-base": "^0.9.20",
"@solana/wallet-adapter-react": "^0.15.28",
"@solana/wallet-adapter-react-ui": "^0.9.27",
"@solana/wallet-adapter-wallets": "^0.19.10",
"@solana/web3.js": "^1.73.0",
"@tailwindcss/typography": "^0.5.9",
"bs58": "^5.0.0",
"classnames": "^2.3.2",
"daisyui": "^2.46.1",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"swr": "^2.0.0",
"tailwind": "^4.0.0",
"theme-change": "^2.3.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-next": "13.1.1",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4"
}
}