forked from w3hc/strat-podcast-nft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.96 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": "w3hc-hardhat-template",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"deploy:goerli": "hardhat deploy --network goerli",
"deploy:arthera": "hardhat deploy --network arthera-testnet",
"sourcify:goerli": "hardhat sourcify --network goerli",
"sourcify:arthera": "hardhat sourcify --network arthera-testnet",
"mint:goerli": "hardhat mint --network goerli --amount",
"mint:arthera": "hardhat mint --network arthera-testnet --amount",
"send:goerli": "hardhat send --wallet 0x70456d078950db075283931D9bE2E01B49f3e71e --network goerli --amount",
"send:arthera": "hardhat send --wallet 0x70456d078950db075283931D9bE2E01B49f3e71e --network arthera-testnet --amount",
"prettier": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.8",
"hardhat": "^2.17.2",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.22"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.4.1",
"@openzeppelin/contracts": "^4.9.3",
"@types/node": "^20.5.7",
"cli-color": "^2.0.3",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"hardhat-deploy": "^0.11.37"
}
}