-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1009 Bytes
/
package.json
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
{
"name": "polybridge",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"relayer": "node scripts/simple-relayer.js",
"deploy:counter:optimism": "hardhat run scripts/deploy-counter.js --network optimismSepolia",
"deploy:counter:base": "hardhat run scripts/deploy-counter.js --network baseSepolia",
"deploy:nft:optimism": "hardhat run scripts/deploy-nft.js --network optimismSepolia",
"deploy:nft:base": "hardhat run scripts/deploy-nft.js --network baseSepolia",
"test:counter": "hardhat run scripts/test-counter.js",
"test:nft": "hardhat run scripts/test-nft.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"inquirer": "^12.3.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"hardhat": "^2.19.1"
}
}