-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.01 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
{
"name": "bug-cache-token",
"description": "Token for programmer!",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"account": "npx hardhat accounts",
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"test": "npx hardhat test",
"local": "npx hardhat node",
"deploy:test": "npx hardhat run scripts/deploy.js --network localhost",
"deploy:ropsten": "npx hardhat run scripts/deploy.js --network ropsten",
"deploy:kovan": "npx hardhat run scripts/deploy.js --network kovan",
"deploy:rinkeby": "npx hardhat run scripts/deploy.js --network rinkeby",
"deploy:goerli": "npx hardhat run scripts/deploy.js --network goerli",
"deploy:moonbase": "npx hardhat run scripts/deploy.js --network moonbase",
"help": "npx hardhat help"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.2"
}
}