-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "@perp/perp-v1-buyback",
"version": "1.1.0",
"description": "Perpetual Protocol V1 Buyback Contract",
"license": "MIT",
"author": {
"name": "Perpetual Protocol",
"email": "[email protected]",
"url": "https://perp.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/perpetual-protocol/perp-voting-escrow.git"
},
"homepage": "https://perp.com/",
"keywords": [
"perpetual-protocol",
"perpetual-protocol-v2",
"perp",
"ve",
"contracts",
"artifacts"
],
"scripts": {
"typechain": "hardhat typechain",
"build": "forge build && npm run typechain",
"test": "forge test",
"coverage": "forge coverage",
"coverage:report": "forge coverage --report lcov; genhtml lcov.info --output-directory coverage-out",
"deploy:optimism": "hardhat deploy --network optimism",
"deploy:optimism-goerli": "hardhat deploy --network optimism-goerli",
"verify:optimism": "hardhat --network optimism etherscan-verify",
"verify:optimism-goerli": "hardhat --network optimism-goerli etherscan-verify"
},
"devDependencies": {
"@chainlink/contracts": "0.1.7",
"@openzeppelin/contracts": "4.8.0",
"@openzeppelin/contracts-upgradeable": "4.8.0",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "6.1.5",
"dotenv": "16.0.3",
"ethers": "5.7.2",
"hardhat": "2.12.5",
"hardhat-deploy": "0.11.22",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"prettier": "2.8.2",
"prettier-plugin-solidity": "1.1.1",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "10.9.1",
"typechain": "8.1.1",
"typescript": "4.9.4"
},
"lint-staged": {
"*.ts": [
"prettier --write"
],
"*.sol": [
"prettier --write",
"solhint"
]
}
}