-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.48 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
{
"name": "agentloan",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"test": "hardhat test",
"coverage": "hardhat coverage",
"agent:dry": "DRY_RUN=true TS_NODE_PROJECT=tsconfig.hardhat.json npx ts-node agents/liquidation-bot.ts",
"agent:run": "DRY_RUN=false TS_NODE_PROJECT=tsconfig.hardhat.json npx ts-node agents/liquidation-bot.ts",
"coordinator:run": "TS_NODE_PROJECT=tsconfig.hardhat.json npx ts-node agents/coordinator-agent.ts",
"agent:register": "TS_NODE_PROJECT=tsconfig.hardhat.json npx ts-node scripts/register-agent.ts",
"agent:circle-setup": "TS_NODE_PROJECT=tsconfig.hardhat.json npx ts-node scripts/circle-setup.ts",
"signal:register": "TS_NODE_PROJECT=tsconfig.hardhat.json npx ts-node scripts/register-signal-agent.ts",
"wallet:new": "node -e \"const {generatePrivateKey,privateKeyToAccount}=require('./node_modules/viem/accounts');const pk=generatePrivateKey();const acc=privateKeyToAccount(pk);console.log(\"Private Key:\",pk);console.log(\"Address:\",acc.address);\""
},
"dependencies": {
"@circle-fin/developer-controlled-wallets": "^10.6.0",
"@openzeppelin/contracts": "^5.6.1",
"@pythnetwork/pyth-evm-js": "^2.0.0",
"@pythnetwork/pyth-sdk-solidity": "^4.3.1",
"@rainbow-me/rainbowkit": "^2.2.4",
"@supabase/supabase-js": "^2.107.0",
"@tanstack/react-query": "^5.62.7",
"@types/three": "^0.184.1",
"next": "^16.2.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.184.0",
"viem": "^2.23.10",
"wagmi": "^2.14.16"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.2",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@tailwindcss/postcss": "^4",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"chai": "^4.5.0",
"dotenv": "^16.6.1",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"ethers": "^6.16.0",
"hardhat": "^2.28.6",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.17",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5"
}
}