-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "astro-nft-tool",
"type": "module",
"version": "0.0.1",
"scripts": {
"eraseData": "rm -rf ./src/data/bitshares/*.json && rm -rf ./src/data/bitshares_testnet/*.json",
"fetchAssets": "bun run ./src/scripts/fetchAssets.js",
"fetchIssuers": "bun run ./src/scripts/fetchAssetIssuers.js",
"prebuild": "bun run fetchAssets && bun run fetchIssuers",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro build && astro preview"
},
"dependencies": {
"@astrojs/check": "^0.6.0",
"@astrojs/react": "^3.3.4",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^7.6.0",
"@exodus/bytebuffer": "[email protected]:BTS-CM/bytebuffer.js.git",
"@nanostores/persistent": "^0.10.1",
"@nanostores/query": "^0.3.0",
"@nanostores/react": "^0.7.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@react-hook/throttle": "^2.2.0",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-window": "^1.8.8",
"@types/uuid": "^9.0.8",
"assert": "^2.1.0",
"astro": "^4.8.2",
"autoprefixer": "^10.4.19",
"bigi": "^1.4.2",
"bs58": "^5.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"deep-equal": "^2.2.3",
"ecurve": "^1.0.6",
"isomorphic-ws": "^5.0.0",
"nanostores": "^0.10.3",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.10.2",
"react-window": "^1.8.10",
"safe-buffer": "^5.2.1",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5",
"uuid": "^9.0.1"
}
}