-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.11 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "btools",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:css": "postcss styles/tailwind.css -o styles/main.css",
"build:watch": "postcss styles/tailwind.css -o styles/main.css --watch",
"prod:build": "NODE_ENV=production yarn run build:css && yarn run build"
},
"dependencies": {
"@apollo/client": "^3.6.6",
"@glasseaters/hydra-sdk": "^0.3.2",
"@jsonforms/core": "^2.5.2",
"@jsonforms/material-renderers": "^2.5.2",
"@jsonforms/react": "^2.5.2",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@metaplex-foundation/js": "^0.13.3",
"@metaplex/js": "^4.12.0",
"@project-serum/anchor": "^0.23.0",
"@saberhq/anchor-contrib": "^1.13.1",
"@saberhq/solana-contrib": "^1.13.2",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "^0.2.0",
"@solana/spl-token-swap": "^0.1.2",
"@solana/wallet-adapter-base": "^0.9.3",
"@solana/wallet-adapter-react": "^0.15.3",
"@solana/wallet-adapter-react-ui": "^0.9.5",
"@solana/wallet-adapter-wallets": "^0.19.7",
"@solana/web3.js": "^1.50.0",
"@strata-foundation/spl-utils": "^3.9.7",
"@types/react": "18.0.0",
"antd": "^4.20.7",
"autoprefixer": "^10.4.4",
"daisyui": "^2.15.1",
"feather-icons": "^4.29.0",
"formidable": "^2.0.1",
"graphql": "^16.4.0",
"next": "12.1.6",
"nextjs-cors": "^2.1.1",
"nft.storage": "^7.0.0",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"ramda": "^0.28.0",
"react": "18.1.0",
"react-confetti-explosion": "^1.0.3",
"react-dom": "18.1.0",
"react-feather": "^2.0.10",
"react-hook-form": "^7.27.0",
"react-router-dom": "^6.3.0",
"react-select": "^5.4.0",
"react-toastify": "^9.0.1",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@types/formidable": "^2.0.5",
"@types/node": "17.0.18",
"@types/ramda": "^0.28.14",
"@types/react": "18.0.0",
"@types/react-dom": "17.0.15",
"eslint": "8.9.0",
"eslint-config-next": "12.0.10",
"typescript": "4.6.4"
}
}