-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.22 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
{
"name": "liquidity-bridge-contract",
"version": "1.3.1",
"description": "## registerFastBridgeBtcTransaction",
"main": "index.js",
"scripts": {
"compile": "npm run lint:sol && npx hardhat compile",
"test": "npm run compile && npx hardhat test",
"coverage": "npx hardhat coverage",
"lint:ts": "npx prettier --check . && npx eslint .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"upgrade-rskDev": "npm run lint:sol && npm run compile && npx hardhat run scripts/deployment/upgrade-lbc.ts --network rskDevelopment",
"upgrade-rskTestnet": "npm run lint:sol && npm run compile && npx hardhat run scripts/deployment/upgrade-lbc.ts --network rskTestnet",
"upgrade-rskMainet": "npm run lint:sol && npm run compile && npx hardhat run scripts/deployment/upgrade-lbc.ts --network rskMainnet",
"contract-size": "npx hardhat size-contracts",
"test:integration": "npx hardhat test integration-test/*.test.ts --bail --network",
"test:e2e": "npx hardhat test e2e/*.test.ts",
"prepare": "pip3 install pre-commit && pre-commit install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/liquidity-bridge-contract.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rsksmart/liquidity-bridge-contract/issues"
},
"homepage": "https://github.com/rsksmart/liquidity-bridge-contract#readme",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@mempool/mempool.js": "^2.3.0",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^3.6.0",
"@rsksmart/pmt-builder": "^3.0.0",
"bech32": "^2.0.0",
"bitcoinjs-lib": "^6.0.1",
"bs58": "^6.0.0",
"bs58check": "^3.0.1",
"dotenv": "^16.3.1",
"eslint": "^9.16.0",
"ethers": "^6.13.4",
"globals": "^15.13.0",
"hardhat": "^2.22.17",
"hardhat-contract-sizer": "^2.10.0",
"prettier": "2.8.8",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.4.1",
"typescript-eslint": "^8.18.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@rsksmart/btc-transaction-solidity-helper": "^0.2.1"
}
}