-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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": "perps-v2-risk-control-module",
"version": "1.0.0",
"license": "UNLICENSED",
"author": "leomassazza",
"scripts": {
"fork:ovm": "npx hardhat node --fork https://mainnet.optimism.io",
"compile": "hardhat compile",
"build": "tsc && cp .env build/",
"deploy": "hardhat run ./scripts/deploy.js --network 'mainnet-ovm'",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"flatten-module": "mkdir -p ./flattened/contracts && hardhat flatten contracts/PerpsV2RiskControlModule.sol > flattened/contracts/PerpsV2RiskControlModule.sol"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.3",
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"ethers": "^5.7.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@types/dotenv": "^8.2.0",
"@types/node": "16.11.12",
"eslint": "7.6.0",
"eslint-config-prettier": "3.6.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-havven": "1.1.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-no-only-tests": "2.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.0.0",
"hardhat": "^2.14.0",
"prettier": "1.19.1",
"ts-node-dev": "1.1.8",
"typescript": "4.5.2"
}
}