-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "armor-core",
"version": "0.0.1",
"description": "armor smart 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",
"coverage": "NODE_OPTIONS='--max-old-space-size=4096' npx hardhat coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armorfi/armor.git"
},
"license": "(c) Armor.Fi DAO, 2021",
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"axios": "^0.24.0",
"bignumber.js": "9.0.1",
"dotenv": "^10.0.0",
"ethereumjs-util": "7.0.5",
"hardhat": "^2.6"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"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.20",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.19",
"ethlint": "1.2.5",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-spdx-license-identifier": "^2.0.2",
"mocha-lcov-reporter": "1.3.0",
"prettier": "2.1.2",
"solidity-coverage": "^0.7.14",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"web3": "^1.3.0"
}
}