-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "agentic-traffic-market",
"version": "1.0.0",
"description": "AI Agent-based P2P Traffic Market using JPYC on Avalanche",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "tsx server.ts",
"build": "next build",
"build:contracts": "cd contracts && forge build",
"test:contracts": "cd contracts && forge test",
"deploy:contracts": "cd contracts && forge script script/Deploy.s.sol --rpc-url avalanche_fuji --broadcast",
"start": "NODE_ENV=production tsx server.ts",
"lint": "biome check .",
"format": "biome format --write .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"next": "16.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@ai-sdk/google": "^1.0.8",
"@modelcontextprotocol/sdk": "^1.0.4",
"ai": "^4.0.38",
"viem": "^2.21.44",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"zod": "^3.24.1",
"jotai": "^2.10.3",
"lucide-react": "^0.468.0",
"react-map-gl": "^7.1.7",
"mapbox-gl": "^3.8.0",
"clsx": "^2.1.1",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"typescript": "^5.7.2",
"tsx": "^4.19.2",
"tailwindcss": "^3.4.17",
"postcss": "^8.4.49",
"autoprefixer": "^10.4.20",
"server-only": "^0.0.1"
},
"engines": {
"node": ">=20.0.0"
}
}