-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.85 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
{
"name": "Volmex.Finance",
"version": "1.0.0",
"description": "",
"main": "buidler.config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:js:fix": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "echo 'solidity linter currently disabled' # solhint --max-warnings 0 \"contracts/**/*.sol\"",
"test": "hardhat test",
"gas-report": "env ENABLE_GAS_REPORT=1 npm run test",
"deploy": "npx hardhat run --network $NETWORK scripts/deploy.ts",
"deploy:polygon": "npx hardhat run --network $NETWORK scripts/deployOnPolygon.ts",
"transfer-ownership": "npx hardhat run --network $NETWORK scripts/transfer-ownership.ts",
"propose-upgrade": "npx hardhat run --network $NETWORK scripts/propose-upgrade.ts",
"register-protocol": "npx hardhat run --network $NETWORK scripts/register-protocol.ts",
"verify-impl": "npx hardhat run --network $NETWORK scripts/verify-implementation.ts",
"transfer-ownership:role": "npx hardhat run --network $NETWORK scripts/transfer-ownership-role.ts",
"upgrade-protocol": "npx hardhat run --network $NETWORK scripts/upgrade.ts"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/buidler-upgrades": "^1.1.0",
"@openzeppelin/contracts-upgradeable": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@thesatoshicompany/optimism-openzeppelin-compat": "^1.0.3",
"@typechain/ethers-v5": "^5.0.0",
"@typechain/truffle-v5": "^4.0.1",
"@typechain/web3-v1": "^2.0.0",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"ethereum-waffle": "^3.1.2",
"ethers": "^5.3.0",
"hardhat": "^2.0.1",
"hardhat-contract-sizer": "^2.0.1",
"hardhat-deploy": "^0.7.5",
"hardhat-deploy-ethers": "^0.3.0-beta.8",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.4",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "4.0.1",
"typescript": "^4.1.5",
"web3": "^1.3.4"
},
"dependencies": {
"@maticnetwork/maticjs": "^2.0.38",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/hardhat-defender": "^1.5.0",
"save": "^2.4.0"
}
}