-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.05 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.05 KB
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
52
53
54
55
56
{
"name": "blockchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx hardhat node",
"test": "npx hardhat test",
"deploy:goerli": "npx hardhat deploy --network goerli --tags DappStop",
"deploy:mumbai": "npx hardhat deploy --network mumbai --tags DappStop",
"deploy:otest": "npx hardhat deploy --network optimism_testnet --tags DappStop",
"deploy:ktest": "npx hardhat deploy --network klaytn_testnet --tags DappStop",
"verify:testnet": "npx hardhat --network goerli etherscan-verify",
"verify:mainnet": "npx hardhat --network mainnet etherscan-verify",
"verify:mumbai": "npx hardhat --network mumbai etherscan-verify",
"verify:otest": "npx hardhat --network optimism_testnet etherscan-verify",
"verify:ktest": "npx hardhat --network klaytn_testnet etherscan-verify",
"mock:mumbai": "npx hardhat run ./scripts/add-mock-data.ts --network mumbai",
"mock:goerli": "npx hardhat run ./scripts/add-mock-data.ts --network goerli",
"new:wallet": "npx hardhat new:wallet"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethersproject/hardware-wallets": "^5.7.0",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/test-helpers": "^0.5.16",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.0",
"@types/node": "^18.7.23",
"axios": "^0.27.2",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"fs-extra": "^10.1.0",
"hardhat": "^2.11.2",
"hardhat-deploy": "^0.11.15",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"ethers": "^5.7.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"overrides" :{
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13"
}
}