-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.55 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "goatgang",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat clean; npx hardhat compile",
"accounts": "npx hardhat accounts",
"test": "npx hardhat test --network ganache",
"testGas": "REPORT_GAS=true npx hardhat test --network ganache",
"prettier": "prettier --write 'contracts/**/*.sol'",
"deploy:ganache": "NETWORK=ganache npx hardhat run --network ganache scripts/deploy.js",
"upgrade:ganache": "NETWORK=ganache npx hardhat run --network ganache scripts/upgrade.js",
"deploy:arbitrum_test": "NETWORK=arbitrum_test npx hardhat run --network arbitrum_test scripts/deploy.js",
"upgrade:arbitrum_test": "NETWORK=arbitrum_test npx hardhat run --network arbitrum_test scripts/upgrade.js",
"deploy:rinkeby": "NETWORK=rinkeby npx hardhat run --network rinkeby scripts/deploy.js",
"deploy:mainnet": "NETWORK=mainnet npx hardhat run --network mainnet scripts/deploy.js",
"deploy:polygon": "NETWORK=polygon npx hardhat run --network polygon scripts/deploy.js",
"deploy:polygon_test": "NETWORK=polygon_test npx hardhat run --network polygon_test scripts/deploy.js",
"gen_merkle": "npx hardhat run --network polygon_test whitelist/gen_merkle.js",
"tools:surya:graph": "surya graph ./contracts/**/*.sol | dot -Tpng > build/TokenVesting.png",
"tools:surya:report": "surya mdreport build/docs/surya-report.md contracts/TokenVesting.sol",
"coverage": "npx hardhat coverage --solcoverjs ./.solcover.js"
},
"author": "https://github.com/AndreiD?tab=repositories",
"keywords": [
"NFT",
"Ethereum",
"Solidity",
"Smart+Contracts",
"Blockchain"
],
"license": "MIT",
"dependencies": {
"@chainlink/contracts": "^0.2.2",
"@openzeppelin/contracts": "^4.2.0",
"@truffle/hdwallet-provider": "1.4.1",
"dotenv": "^10.0.0",
"ethereumjs-util": "^7.1.0",
"keccak256": "^1.0.3",
"merkletreejs": "^0.2.24",
"solidity-coverage": "^0.7.16"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@openzeppelin/hardhat-upgrades": "^1.13.0",
"@openzeppelin/test-helpers": "^0.5.12",
"chai": "^4.3.4",
"csv-write-stream": "^2.0.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.4.3",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.16",
"web3": "^1.4.0"
}
}