-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.89 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "nftx-protocol-v3",
"repository": "https://github.com/NFTX-project/nftx-protocol-v3/",
"scripts": {
"prepare": "husky install",
"test": "forge test",
"compile": "hardhat compile",
"clean": "hardhat clean",
"deploy:goerli": "hardhat deploy --network goerli",
"deploy:sepolia": "hardhat deploy --network sepolia",
"deploy:mainnet": "hardhat deploy --network mainnet",
"deploy:arbitrum": "hardhat deploy --network arbitrum",
"deploy:base": "hardhat deploy --network base",
"verify:goerli": "hardhat --network goerli etherscan-verify",
"verify:sepolia": "hardhat --network sepolia etherscan-verify",
"verify:mainnet": "hardhat --network mainnet etherscan-verify",
"verify:arbitrum": "hardhat --network arbitrum etherscan-verify",
"verify:base": "hardhat --network base etherscan-verify",
"gen:addresses": "ts-node ./script/genAddressesJson.ts",
"gen:readme": "ts-node ./script/genREADME.ts",
"gen:addresses-and-readme": "yarn gen:addresses && yarn gen:readme"
},
"devDependencies": {
"@ethersproject/units": "^5.7.0",
"@nomicfoundation/hardhat-foundry": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.1",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.4.1",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.11.22",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-tracer": "^1.0.0-alpha.6",
"husky": "^8.0.3",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"ts-node": "^10.9.2",
"typechain": "^5.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^1.1.1"
}
}