-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "dripcaster",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@metaplex-foundation/mpl-core": "^0.4.4",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@pinata/sdk": "^2.1.0",
"@solana/spl-token": "^0.4.3",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@tanstack/react-query": "^5.28.6",
"@wormhole-foundation/wormhole-connect": "^0.3.3",
"axios": "^1.6.8",
"connectkit": "^1.7.2",
"ethers": "^5.5.0",
"form-data": "^4.0.0",
"formidable": "^2.1.2",
"next": "14.1.4",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"viem": "^2.8.18",
"wagmi": "^2.5.12"
},
"devDependencies": {
"@types/formidable": "^3.4.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}