-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 894 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 894 Bytes
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
{
"name": "cross-chain-bridge-demo",
"version": "1.0.0",
"description": "Mini Cross-Chain Bridge Demo with Rust + Solidity + Ethers.js",
"scripts": {
"compile": "hardhat compile",
"nodes": "node scripts/start-nodes.js",
"deploy:chain1": "hardhat run scripts/deploy-chain1.js --network chain1",
"deploy:chain2": "hardhat run scripts/deploy-chain2.js --network chain2",
"deploy:all": "npm run deploy:chain1 && npm run deploy:chain2",
"link": "hardhat run scripts/link-bridges.js --network chain1",
"test": "hardhat test",
"frontend": "cd frontend && npm run dev",
"setup": "npm run compile && npm run deploy:all && npm run link"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.0",
"hardhat": "^2.19.0"
},
"dependencies": {
"ethers": "^6.9.0",
"dotenv": "^16.3.1"
}
}