-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.29 KB
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
{
"name": "lugia-contract",
"author": "Perpetual Protocol",
"version": "1.1.35",
"license": "GPL-3.0-or-later",
"description": "Lugia contracts",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "forge build",
"coverage": "forge coverage",
"gas-snapshot": "forge snapshot",
"gas-snapshot:check": "forge snapshot --check",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"solhint:check": "solhint --config ./.solhint.json 'src/**/*.sol'",
"lint": "prettier --write 'src/**/*.sol' && npm run solhint",
"lint:check": "prettier --check 'src/**/*.sol' && npm run solhint:check",
"test": "forge test",
"clean": "rm -rf cache out output",
"prepare": "husky install",
"pack": "zx misc/pack.js",
"release": "cd output && npm publish --non-interactive --access public"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.1",
"@openzeppelin/contracts-upgradeable": "5.0.1",
"@pythnetwork/pyth-sdk-solidity": "2.2.0",
"multicaller": "1.2.0",
"graphql-request": "6.1.0",
"zod": "3.23.8"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "1.1.3",
"@nomiclabs/ethereumjs-vm": "4.2.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "3.1.1",
"@openzeppelin/hardhat-upgrades": "1.28.0",
"@tenderly/hardhat-tenderly": "1.7.7",
"@tenderly/sdk": "0.1.14",
"@typechain/ethers-v5": "11.0.0",
"@typechain/hardhat": "7.0.0",
"@types/big.js": "6.2.2",
"big.js": "6.2.1",
"csv-parser": "3.0.0",
"dotenv": "16.1.4",
"ethers": "5.7.2 ",
"hardhat": "2.22.14",
"hardhat-contract-sizer": "2.7.0",
"hardhat-deploy": "0.11.45",
"hardhat-deploy-tenderly": "0.2.0",
"husky": "8.0.3",
"json-stable-stringify": "1.0.2",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"readline-sync": "1.4.10",
"solhint": "3.3.6",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "10.9.1",
"typechain": "8.2.0",
"typescript": "5.0.4",
"zx": "7.2.2",
"async-mutex": "0.3.2"
},
"overrides": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.13"
},
"engines": {
"node": "^20.5.1",
"npm": "^9.8.0"
},
"packageManager": "^npm@9.8.0"
}