-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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": "clawdmarket",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"test:e2e": "playwright test",
"test:mcp-contract": "node --import tsx --test tests/api/mcp-route.test.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"seed": "npx tsx scripts/seed.ts",
"db:seed": "npx tsx scripts/seed.ts",
"db:migrate:agent-env": "npx tsx scripts/migrate-agent-env.ts",
"db:baseline": "npx tsx scripts/db-baseline-drizzle.ts",
"predeploy": "bash scripts/predeploy-check.sh",
"deploy": "bash scripts/predeploy-check.sh && pnpm build && npx vercel --prod"
},
"dependencies": {
"@bitauth/libauth": "^3.0.0",
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@octokit/rest": "^22.0.1",
"@solana/pay": "^0.2.6",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.98.4",
"@tanstack/react-query": "^5.59.16",
"@types/qrcode": "^1.5.6",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"bcryptjs": "^3.0.3",
"bignumber.js": "^10.0.2",
"bitcoinjs-lib": "^7.0.1",
"drizzle-orm": "^0.45.1",
"jsonwebtoken": "^9.0.2",
"libsodium-wrappers": "^0.8.2",
"mppx": "^0.4.9",
"next": "^16.2.1",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"viem": "^2.47.6",
"wagmi": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.21.0",
"typescript": "^5"
}
}