-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 3.3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@wigoswap/drop",
"version": "1.0.0",
"license": "MIT",
"types": "./types/index.ts",
"description": "WigoSwap ERC20 vesting contract claimable by airdrop winners",
"files": [
"abi",
"artifacts",
"contracts",
"deployments",
"exports",
"types"
],
"author": "WigoSwap",
"repository": {
"type": "git",
"url": "git+https://github.com/wigoswap/wigo-drop.git"
},
"bugs": {
"url": "https://github.com/wigoswap/wigo-drop/issues"
},
"homepage": "https://github.com/wigoswap/wigo-drop#readme",
"keywords": [
"wigoswap",
"fantom",
"Merkle Proof",
"Airdrop",
"Vesting"
],
"scripts": {
"lint": "prettier --check test contracts",
"lint:fix": "prettier --write test contracts",
"clean": "rimraf artifacts cache types",
"precompile": "yarn clean",
"compile": "hardhat compile",
"pretest": "yarn compile",
"test": "hardhat test",
"prepublishOnly": "yarn test",
"deploy": "hardhat --network hardhat deploy",
"deploy:mainnet": "hardhat --network mainnet deploy",
"deploy:testnet": "hardhat --network testnet deploy",
"deploy:ethereum": "hardhat --network ethereum deploy",
"deploy:ropsten": "hardhat --network ropsten deploy",
"verify:mainnet": "hardhat --network mainnet etherscan-verify --solc-input",
"verify:testnet": "hardhat --network testnet etherscan-verify --solc-input",
"verify:ethereum": "hardhat --network ethereum etherscan-verify --solc-input",
"verify:ropsten": "hardhat --network ropsten etherscan-verify --solc-input",
"export:mainnet": "hardhat --network mainnet export --export exports/mainnet.json",
"export:testnet": "hardhat --network testnet export --export exports/testnet.json",
"export:ethereum": "hardhat --network ethereum export --export exports/ethereum.json",
"export:ropsten": "hardhat --network ropsten export --export exports/ropsten.json",
"export": "hardhat export --export-all exports/deployments.json",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=2048\" hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test",
"prettier": "prettier --write test/**/*.{ts} && prettier --write contracts/**/*.sol"
},
"devDependencies": {
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity#e06e943",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.0",
"hardhat": "^2.8.2",
"hardhat-abi-exporter": "^2.3.0",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.0",
"hardhat-spdx-license-identifier": "^2.0.0",
"hardhat-typechain": "^0.3.5",
"hardhat-watcher": "^2.0.0",
"prettier": "^2.2.0",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solidity-coverage": "^0.7.13",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.2",
"typescript": "^4.2.2"
},
"dependencies": {
"set-value": "^4.0.1"
}
}