-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 KB
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
{
"name": "monke-rpc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty:check": "prettier --config ./prettier.config.js --check \"{pages,components}/**/*.{js,jsx,ts,tsx}\"",
"pretty:write": "prettier --config ./prettier.config.js --write \"{components,pages}/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@metaplex-foundation/js": "^0.11.7",
"@solana/wallet-adapter-base": "^0.9.9",
"@solana/wallet-adapter-react": "^0.15.8",
"@solana/wallet-adapter-react-ui": "^0.9.10",
"@solana/wallet-adapter-wallets": "^0.16.8",
"@solana/web3.js": "^1.48.0",
"@types/sharp": "^0.30.4",
"axios": "^0.27.2",
"cors": "^2.8.5",
"next": "12.2.2",
"nextjs-cors": "^2.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.3.0",
"react-loading-icons": "^1.1.0",
"sharp": "^0.30.7"
},
"devDependencies": {
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"autoprefixer": "^10.4.7",
"eslint": "8.20.0",
"eslint-config-next": "12.2.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4"
}
}