-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 2.28 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
{
"name": "powerswap",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn run compile && yarn run typechain",
"clean": "hardhat clean",
"compile": "hardhat compile",
"compile-release": "COMPILE_TARGET=release hardhat compile",
"coverage": "hardhat coverage --show-stack-traces --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.js\"",
"lint:sol": "solhint --config ./.solhint.json \"contracts/**/*.sol\"",
"lint:js": "eslint --config .eslintrc.json --ignore-path ./.eslintignore --ext .js .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:sol": "prettier --config .prettierrc --write \"contracts/**/*.sol\"",
"test": "NODE_OPTIONS=--max_old_space_size=8096 mocha --timeout 250000",
"test-ganache": "hardhat test --network ganache"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^1.3.0",
"@openzeppelin/truffle-upgrades": "^1.2.1",
"@openzeppelin/contracts-0.8": "npm:@openzeppelin/[email protected]",
"@openzeppelin/upgrades": "^2.8.0",
"@powerpool/power-oracle": "https://github.com/powerpool-finance/power-oracle-contracts.git#9ce4bf9",
"@truffle/hdwallet-provider": "^1.1.1",
"bignumber.js": "^9.0.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^7.1.0",
"ethers": "^5.0.18",
"lodash": "^4.17.20",
"p-iteration": "^1.1.8",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"web3": "1.3.4"
},
"devDependencies": {
"@ethersproject/abstract-signer": "^5.0.1",
"@ethersproject/bignumber": "^5.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@powerpool/hardhat-ganache": "^2.0.0",
"@truffle/contract": "^4.2.26",
"hardhat": "^2.15.0",
"hardhat-contract-sizer": "^2.9.0",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^8.0.1",
"solidity-coverage": "^0.7.11",
"typechain": "^4.0.0"
}
}