-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.89 KB
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
{
"name": "arShield",
"version": "0.0.1",
"description": "arvault contract",
"scripts": {
"build": "npm run compile",
"compile": "npx hardhat compile",
"lint": "eslint . --fix && solium -d contracts/ --fix",
"lintNoFix": "eslint . && solium -d contracts/",
"test": "NODE_OPTIONS='--max-old-space-size=4096' npx hardhat test",
"test:mainnet": "NODE_OPTIONS='--max-old-space-size=4096' MAINNET_FORK=true npx hardhat test",
"coverage": "NODE_OPTIONS='--max-old-space-size=4096' npx hardhat coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armorfi/armor.git"
},
"license": "MIT",
"dependencies": {
"bignumber.js": "9.0.1",
"ethereumjs-util": "7.0.5",
"hardhat": "^2.3.3",
"openzeppelin-solidity": "^4.1.0",
"solc": "^0.8.5"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@openzeppelin/test-helpers": "^0.5.6",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"@uniswap/v2-core": "^1.0.1",
"@yfi/sdk": "^0.0.35",
"chai": "^4.2.0",
"coveralls": "3.1.0",
"eslint": "7.10.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"eth-gas-reporter": "0.2.17",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.3.1",
"ethlint": "1.2.5",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-log-remover": "^2.0.0",
"hardhat-spdx-license-identifier": "^2.0.2",
"mocha-lcov-reporter": "1.3.0",
"prettier": "2.1.2",
"solidity-coverage": "^0.7.16",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"web3": "^1.3.0"
}
}