-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.35 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
{
"name": "investoken",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-solhint": "^3.0.0",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": ">=12.0.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"ethers": "^5.4.7",
"hardhat": "^2.13.0",
"hardhat-deploy": "^0.11.25",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat deploy --network hardhat",
"deploy:goerli": "hardhat deploy --network goerli",
"deploy:mumbai": "hardhat deploy --network mumbai",
"deploy:polygon": "hardhat deploy --network polygon",
"deploy:matic": "hardhat deploy --network matic",
"chain": "hardhat node --hostname 0.0.0.0 --network hardhat --no-deploy",
"lint": "eslint '**/*.{js,ts}'",
"format": "prettier 'contracts/*.sol' --check",
"format-fix": "prettier 'contracts/*.sol' --write",
"solhint": "solhint 'contracts/*.sol'",
"test": "hardhat test --network hardhat",
"coverage": "hardhat coverage",
"dodoc": "hardhat dodoc",
"verify:goerli": "hardhat verify --network goerli 0x6e7747d69eE8ad5D53636e1fF69A73535063ff27",
"verify:mumbai": "hardhat verify --network matic 0x2fb7D2DbfB628201055f994B998Ca76091f7a8B4",
"verify:polygon": "hardhat verify --network polygon 0x4E594d3f64B04F2c0b828Cd2fEC7e5307B6443b4"
}
}