-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"dependencies": {
"@0glabs/0g-serving-broker": "^0.5.4",
"@0glabs/0g-ts-sdk": "^0.3.1",
"@google/genai": "^1.28.0",
"@google/generative-ai": "^0.24.1",
"@openzeppelin/contracts": "^5.4.0",
"crypto-js": "4.2.0",
"ethers": "^6.13.1",
"nodemon": "^3.1.10"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.1",
"@nomicfoundation/hardhat-ignition": "^3.0.3",
"@nomicfoundation/hardhat-ignition-ethers": "^3.0.3",
"@nomicfoundation/hardhat-network-helpers": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^3.0.2",
"@nomicfoundation/hardhat-viem": "^3.0.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.18.7",
"chai": "^5.3.3",
"dotenv": "^17.2.3",
"forge-std": "github:foundry-rs/forge-std#v1.9.4",
"hardhat": "^3.0.6",
"mocha": "^11.7.3",
"typescript": "~5.8.3"
},
"type": "module",
"scripts": {
"compile": "hardhat compile",
"deploy:incident:local": "node scripts/deployIncident.js --network localhost",
"deploy:incident:og": "node scripts/deployIncident.js --network og",
"deploy:inft": "node scripts/deployINFT.js --network og",
"mint:incident": "node scripts/mintIncident.js --network og",
"mint:inft": "node scripts/mintIncidentINFT.js --network og",
"backend": "node backend/server.js",
"backend:og": "node backend/serverOG.js"
}
}