-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.82 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
{
"name": "nftx-protocol-v2",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"test:logs": "hardhat test --logs",
"deploy:default": "hardhat deploy",
"deploy:goerli": "hardhat deploy --network goerli",
"verify:goerli": "hardhat --network goerli etherscan-verify",
"deploy:sepolia": "hardhat deploy --network sepolia",
"verify:sepolia": "hardhat --network sepolia etherscan-verify --api-url https://api-sepolia.etherscan.io/",
"deploy:mainnet": "hardhat deploy --network mainnet",
"verify:mainnet": "hardhat --network mainnet etherscan-verify",
"deploy:arbitrum": "hardhat deploy --network arbitrum",
"verify:arbitrum": "hardhat --network arbitrum 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",
"unflatten": "npx @devdavi/unflatten",
"prepare": "husky install"
},
"devDependencies": {
"@devdavi/unflatten": "^1.0.4",
"@ethersproject/units": "^5.7.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",
"@types/node": "^20.11.5",
"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-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"
}
}