-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.96 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
{
"name": "celo-margin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test-local": "hardhat test --network localhost",
"coverage": "hardhat coverage",
"docify": "node docify.js",
"deploy:mainnet": "hardhat --network mainnet deploy",
"deploy:alfajores": "hardhat --network alfajores deploy",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix"
},
"author": "Kirill Madorin",
"license": "ISC",
"devDependencies": {
"@aave/protocol-v2": "^1.0.1",
"@celo-tools/celo-ethers-wrapper": "^0.0.5",
"@celo/contractkit": "^1.3.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/test-helpers": "^0.5.15",
"@ubeswap/hardhat-celo": "^0.9.0",
"@ubeswap/solidity-create2-deployer": "^0.6.2",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.26",
"hardhat": "^2.6.6",
"hardhat-abi-exporter": "^2.3.0",
"hardhat-deploy": "^0.9.4",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-preprocessor": "^0.1.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-watcher": "^2.1.1",
"solc": "^0.8.9",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"solidity-docgen": "^0.5.16",
"web3": "^1.6.0"
}
}