-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
36 lines (36 loc) · 967 Bytes
/
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
{
"license": "MIT",
"name": "next-candy-machine",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@metaplex/js": "^2.0.1",
"@project-serum/anchor": "^0.17.1-beta.1",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.6.0",
"@solana/wallet-adapter-react": "^0.12.3",
"@solana/wallet-adapter-react-ui": "^0.5.0",
"@solana/wallet-adapter-wallets": "^0.10.0",
"@solana/web3.js": "^1.29.2",
"next": "11.1.2",
"react": "17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.1.1"
},
"devDependencies": {
"@types/react": "17.0.27",
"autoprefixer": "^10.3.7",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"next-transpile-modules": "^8.0.0",
"postcss": "^8.3.9",
"tailwindcss": "^2.2.16",
"typescript": "4.4.3"
}
}