forked from kcolbchain/meridian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "@kcolbchain/meridian-contracts",
"version": "0.1.0",
"scripts": {
"compile": "hardhat --config deploy/hardhat.config.js compile",
"test": "hardhat --config deploy/hardhat.config.js test",
"deploy:local": "hardhat --config deploy/hardhat.config.js run deploy/deploy.js --network localhost",
"deploy:base-sepolia": "hardhat --config deploy/hardhat.config.js run deploy/deploy.js --network base-sepolia",
"deploy:op-sepolia": "hardhat --config deploy/hardhat.config.js run deploy/deploy.js --network op-sepolia",
"deploy:fuji": "hardhat --config deploy/hardhat.config.js run deploy/deploy.js --network fuji"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"hardhat": "^2.19.0"
}
}