forked from hyperliquid-dex/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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
{
"name": "hyperlquid-bridge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat clean && npx hardhat compile",
"test": "npx hardhat test --network hardhat",
"coverage": "npx hardhat coverage",
"deploy:c": "npx hardhat run deploy/deployBridge2.ts --network avax",
"deploy:u": "npx hardhat run deploy/deployBridge2.ts --network fuji",
"format": "npx prettier --config .prettierrc --write \"**/*.*.{ts,js}\" \"contracts/**/*.sol\"",
"format:file": "npx prettier --config .prettierrc --write ",
"prepare": "husky install",
"size": "npx hardhat size-contracts",
"docgen": "npx hardhat docgen"
},
"repository": {
"type": "git",
"url": "https://github.com/woof-software/contracts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0-beta.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^3.0.0-beta.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.1.0",
"@types/chai-arrays": "^2.0.0",
"@types/mocha": "^10.0.6",
"@types/node-cron": "^3.0.4",
"dotenv": "^16.0.2",
"glob": "^10.4.1",
"hardhat": "^2.22.5",
"hardhat-console": "^1.0.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.2.0",
"husky": "^9.0.11",
"prettier": "^3.3.1",
"prettier-plugin-solidity": "^1.1.2",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"bignumber.js": "^9.1.2",
"chai": "^4.2.0",
"ethers": "^6.2.0"
}
}