forked from staccDOTsol/jupiter-nextjs-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "create-dapp-solana-nextjs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@coral-xyz/anchor": "^0.26.0",
"@coral-xyz/borsh": "^0.26.0",
"@jup-ag/react-hook": "3.0.0-beta.9",
"@solana/spl-token-registry": "^0.2.298",
"@solana/wallet-adapter-base": "^0.9.8",
"@solana/wallet-adapter-react": "^0.15.4",
"@solana/wallet-adapter-react-ui": "^0.9.27",
"@solana/wallet-adapter-wallets": "^0.16.0",
"@solana/web3.js": "^1.61.1",
"@tailwindcss/typography": "^0.4.1",
"cross-fetch": "^3.1.5",
"daisyui": "^1.16.2",
"decimal.js": "^10.3.1",
"jsbi": "^4.3.0",
"next": "^12.0.7",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^9.0.0",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@types/node": "16.11.7",
"@types/react": "17.0.34",
"autoprefixer": "^10.4.0",
"eslint": "7",
"eslint-config-next": "12.0.3",
"postcss": "^8.3.11",
"tailwindcss": "^2.2.19",
"typescript": "4.7.4"
},
"resolutions": {
"@solana/buffer-layout": "4.0.0"
}
}