-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.29 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.29 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
{
"name": "diversifi-minipay",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.11.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev -p 3005",
"build": "turbo run build --filter=@diversifi/shared --filter=@stable-station/mento-utils && next build",
"start": "next start",
"lint": "turbo lint",
"test": "vitest run",
"test:watch": "vitest",
"clean": "turbo clean && rm -rf .next out node_modules cache .cache",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"setup-arc-agent": "node scripts/setup-arc-agent.js",
"create-wallet": "npx tsx --env-file=.env.local scripts/create-circle-wallet.ts",
"test-x402": "node scripts/test-x402-hub.mjs",
"test-x402-comprehensive": "node scripts/test-x402-comprehensive.mjs",
"validate-agent": "node -e \"const { validateAgentConfig } = require('./utils/arc-agent-setup.ts'); console.log(validateAgentConfig());\""
},
"dependencies": {
"@celo/blind-threshold-bls": "1.0.0-beta",
"@celo/identity": "5.1.2",
"@celo/poprf": "0.1.9",
"@circle-fin/developer-controlled-wallets": "10.0.1",
"@diversifi/shared": "workspace:*",
"@farcaster/miniapp-sdk": "0.2.1",
"@google/generative-ai": "0.24.1",
"@lifi/sdk": "3.15.3",
"@privy-io/react-auth": "3.13.1",
"@privy-io/wagmi": "4.0.1",
"@stable-station/mento-utils": "workspace:*",
"@tanstack/react-query": "5.90.21",
"@vercel/og": "0.8.6",
"autoprefixer": "^10.4.0",
"axios": "1.13.2",
"chart.js": "^4.4.9",
"ethers": "^5.7",
"formidable": "3.5.4",
"framer-motion": "12.26.2",
"mongoose": "9.2.0",
"next": "^15.2.0",
"openai": "6.16.0",
"postcss": "^8.4.0",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.1",
"viem": "^2.37.0",
"wagmi": "^2.14.15"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/formidable": "3.4.6",
"@types/node": "^22.8.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "15.2.0",
"jsdom": "29.0.0",
"turbo": "^2.1.2",
"typescript": "^5.6.3",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.30.0"
}