-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "barnbridge-yieldfarming",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "buidler test",
"coverage": "npx buidler coverage --network coverage",
"deploy": "buidler run --network",
"lint": "yarn run lint:js && npm run lint:sol",
"lint:fix": "yarn run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\""
},
"author": "BarnBridge",
"license": "Apache-2",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.4",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.1.0",
"buidler-abi-exporter": "^1.0.1",
"buidler-gas-reporter": "^0.1.3",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.1.0",
"ethers": "^5.0.9",
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.10"
},
"dependencies": {
"@nomiclabs/buidler-etherscan": "^2.0.1",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"bignumber.js": "^9.0.0"
}
}