-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.14 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
{
"name": "@stakedao/opyn-perp-vault",
"version": "0.1.0",
"private": "true",
"description": "StakeDao Opyn Perpetual Vault smart contracts",
"keywords": [
"defi",
"ethereum",
"options",
"opyn",
"solidity",
"smart contracts",
"stakeDAO"
],
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"test:coverage": "COVERAGE=true FORK=true hardhat coverage",
"test:profit": "FORK=true hardhat test --network hardhat ./test/mainnet-fork/short-vault-profit.ts",
"test:loss": "FORK=true hardhat test --network hardhat ./test/mainnet-fork/short-vault-loss.ts",
"test": "hardhat test --network hardhat ./test/unit-tests/*.ts"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"dependencies": {
"@airswap/utils": "^0.4.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "3.4.0",
"@openzeppelin/contracts-upgradeable": "^3.4.1",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.1",
"@types/mocha": "^8.2.2",
"@typescript-eslint/parser": "4.29.1",
"chai": "^4.3.4",
"chalk": "^4.1.0",
"dotenv": "^9.0.2",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.4",
"hardhat": "^2.5",
"node-watch": "^0.7.0",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.27.1",
"solc": "^0.7.6",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.0.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.1",
"lint-staged": "^11.1.2"
}
}