-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.51 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
{
"name": "j1tfyi-ccp",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "npx vite",
"build": "npx vite build && mkdir -p dist/public && cp public/*.png public/*.ico dist/public/ 2>/dev/null || true && cp public/*.mp4 public/*.mov public/*.webm dist/ 2>/dev/null || true",
"build:bridge": "cd bridge-react-app && npm run build",
"preview": "npx vite preview",
"lint": "eslint . --ext js,jsx,ts,tsx --max-warnings 0",
"postinstall": "cd bridge-react-app && npm install --legacy-peer-deps",
"cdp-server": "node cdp-session-server-fixed.mjs",
"cdp-server:old": "node cdp-session-server.mjs",
"test-cdp": "node test-cdp-session.mjs",
"setup-cdp": "node setup-cdp-fixed.mjs",
"dev:full": "npm run cdp-server & npm run dev",
"cdp:test": "node api/generateToken-fixed.mjs '{\"addresses\":[{\"address\":\"0x4A671c9424a95eA56da39D6fd13928e6aFB0Eb3E\",\"blockchains\":[\"ethereum\",\"base\"],\"assets\":[\"ETH\",\"USDC\"]}]}'",
"cdp:validate": "node -e \"import('./api/cdp-auth-fixed.mjs').then(m => m.validateCredentials(JSON.parse(process.env.CDP_CREDS || '{}')))\""
},
"dependencies": {
"@coinbase/coinbase-sdk": "^0.10.0",
"@coinbase/onchainkit": "^0.38.19",
"@radix-ui/react-slot": "^1.2.3",
"@solana/wallet-adapter-base": "^0.9.24",
"@solana/wallet-adapter-react": "^0.15.36",
"@solana/wallet-adapter-react-ui": "^0.9.36",
"@solana/web3.js": "^1.98.4",
"@tanstack/react-query": "^5.90.2",
"axios": "^1.12.2",
"bs58": "^6.0.0",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"elliptic": "^6.6.1",
"ethers": "^6.15.0",
"express": "^5.1.0",
"framer-motion": "^12.23.22",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.462.0",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-router-dom": "^7.9.1",
"tailwind-merge": "^2.6.0",
"three": "^0.165.0",
"viem": "^2.37.8",
"wagmi": "^2.17.2"
},
"devDependencies": {
"@types/node": "^22.16.5",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/three": "^0.180.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.2",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}