-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
40 lines (40 loc) · 1.44 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
{
"name": "starter-clone",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"reset": "git remote rm origin",
"build:solidity": "npx hardhat compile",
"build:js": "node_modules/.bin/webpack",
"build": "npm run build:solidity && npm run build:js",
"test": "npx hardhat test",
"deploy:solidity-localhost": "npx hardhat deploy --network localhost",
"deploy:solidity-rinkeby": "npx hardhat deploy --network rinkeby",
"deploy:solidity-mainnet": "npx hardhat deploy --network mainnet",
"deploy:localhost": "npm run build:solidity && npm run deploy:solidity-localhost",
"deploy:rinkeby": "npm run build:solidity && npm run deploy:solidity-rinkeby",
"deploy:mainnet": "npm run build:solidity && npm run deploy:solidity-mainnet",
"verify:rinkeby": "npx hardhat v --network rinkeby",
"verify:mainnet": "npx hardhat v --network mainnet"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.6",
"hardhat-abi-exporter": "^2.3.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.6"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"dotenv": "^10.0.0"
}
}