-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.1 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.1 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "yapbay",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"generate-version": "node scripts/generate-version.js",
"test-rpc": "node scripts/test-helius-rpc.js",
"postinstall": "node scripts/remove-node-gyp.js",
"dev": "vite",
"build": "npm run generate-version && tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"build-image": "podman build --network=host -f Containerfile -t localhost/yapbay-vite:latest .",
"create-pod": "podman pod exists yapbay-vite || podman pod create --name yapbay-vite --network host",
"start-app": "podman container exists yapbay-app || podman run -d --name yapbay-app --pod yapbay-vite --mount type=bind,source=$(pwd)/.env,target=/app/.env,ro localhost/yapbay-vite:latest",
"deploy": "npm run build && npm run build-image && systemctl --user restart yapbay-vite-pod.service && systemctl --user restart yapbay-vite.service",
"stop-pod": "podman pod stop yapbay-vite",
"logs": "journalctl --user -u yapbay-vite.service -f",
"clean": "podman pod stop yapbay-vite && podman pod rm -f yapbay-vite"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@dynamic-labs/sdk-react-core": "^4.52.2",
"@dynamic-labs/solana": "^4.52.2",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@fontsource/inter": "^5.2.5",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.8",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.8",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.0",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"emoji-flags": "^1.3.0",
"libphonenumber-js": "^1.12.7",
"lucide-react": "^0.484.0",
"next-themes": "^0.4.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^7.11.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.0.2",
"viem": "^2.26.5"
},
"overrides": {
"axios": "^1.13.2",
"bigint-buffer": "npm:bigint-buffer-fixed@^1.1.6",
"valibot": "^1.2.0",
"@mysten/sui": {
"valibot": "^1.2.0"
}
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@tailwindcss/vite": "^4.1.4",
"@types/dotenv": "^6.1.1",
"@types/emoji-flags": "^1.3.3",
"@types/node": "^22.13.13",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"postcss": "^8.5.3",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^4.1.4",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.4.1",
"vite-plugin-node-polyfills": "^0.23.0"
}
}