forked from bearn-defi/bdollar-smartcontracts
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
81 lines (81 loc) · 2.98 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
74
75
76
77
78
79
80
81
{
"name": "midasdollar-protocol",
"version": "1.0.0",
"description": "A lightweight implementation of the Basis Protocol on Binance smart-chain",
"repository": "https://github.com/MidasCore/midasdollar-protocol",
"license": "MIT",
"scripts": {
"verify": "hardhat etherscan-verify",
"deploy": "hardhat deploy",
"clean": "hardhat clean",
"size": "yarn hardhat size-contracts",
"slint": "yarn prettier --write 'contracts/**/*.sol' && yarn solhint 'contracts/**/*.sol'",
"deploy-kovan": "hardhat deploy --network kovan",
"kovan-addresses": "hardhat --network kovan run scripts/addresses.ts",
"compile": "hardhat compile",
"test": "hardhat test",
"test:verbose": "VERBOSE=true hardhat test",
"coverage": "npm run build && npx buidler coverage --temp artifacts --network coverage",
"truffle-test": "truffle test",
"truffle-test:verbose": "VERBOSE=true truffle test",
"lint": "eslint .",
"lintp": "yarn prettier --write 'test/**/*.js' 'test/**/*.ts'",
"lint:contracts": "solhint contracts/*.sol",
"flat:contracts": "sol-merger 'contracts/**/*.sol' ./build/contracts-flat"
},
"dependencies": {
"@openzeppelin/contracts": "^3.3.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"@uniswap/lib": "^1.1.2",
"@uniswap/v2-core": "^1.0.1"
},
"devDependencies": {
"ethereum-waffle": "^3.2.2",
"@ethereum-waffle/chai": "^3.0.2",
"@nomiclabs/hardhat-etherscan": "^2.0.2-rc.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-vyper": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.10",
"@openzeppelin/truffle-upgrades": "^1.4.0",
"@truffle/hdwallet-provider": "^1.1.0",
"@typechain/ethers-v5": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"decimal.js": "^10.2.1",
"dotenv": "^8.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eth-sig-util": "^2.5.3",
"ethers": "^5.0.19",
"hardhat": "^2.0.3",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-deploy": "^0.7.0-beta.28",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"hardhat-gas-reporter": "^1.0.3",
"hardhat-typechain": "^0.3.3",
"husky": "^4.2.5",
"mocha": "^7.0.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"sol-merger": "^3.1.0",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.11",
"truffle-assertions": "^0.9.1",
"truffle-plugin-verify": "^0.4.0",
"truffle-privatekey-provider": "^1.3.0",
"ts-node": "^9.0.0",
"typechain": "^3.0.0",
"typescript": "^4.0.3"
}
}