-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
79 lines (79 loc) · 2.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@keep-network/tbtc-v2",
"version": "1.8.0-dev",
"license": "GPL-3.0-only",
"files": [
"artifacts/",
"build/contracts/",
"contracts/",
"deploy/",
"export/",
"tasks/",
"export.json"
],
"scripts": {
"clean": "hardhat clean && rm -rf cache/ export/ external/npm export.json",
"build": "hardhat compile",
"deploy": "hardhat deploy --export export.json",
"deploy:test": "USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_TBTC=true hardhat deploy",
"format": "npm run lint && prettier --check .",
"format:fix": "npm run lint:fix && prettier --write .",
"lint": "npm run lint:eslint && npm run lint:sol",
"lint:fix": "npm run lint:fix:eslint && npm run lint:fix:sol",
"lint:eslint": "eslint .",
"lint:fix:eslint": "eslint . --fix",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:fix:sol": "solhint 'contracts/**/*.sol' --fix",
"test": "USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_TBTC=true hardhat test",
"test:integration": "NODE_ENV=integration-test USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_TBTC=true hardhat test ./test/integration/*.test.ts",
"prepack": "tsc -p tsconfig.export.json && hardhat export-artifacts export/artifacts",
"prepublishOnly": "./scripts/prepare-artifacts.sh --network $npm_config_network"
},
"dependencies": {
"@keep-network/bitcoin-spv-sol": "3.4.0-solc-0.8",
"@keep-network/ecdsa": "development",
"@keep-network/random-beacon": "development",
"@keep-network/tbtc": "development",
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"@thesis/solidity-contracts": "github:thesis/solidity-contracts#4985bcf"
},
"devDependencies": {
"@defi-wonderland/smock": "^2.3.4",
"@keep-network/hardhat-helpers": "0.6.0-pre.18",
"@keep-network/hardhat-local-networks-config": "^0.1.0-pre.4",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/hardhat-upgrades": "1.22.0",
"@tenderly/hardhat-tenderly": ">=1.0.12 <1.2.0",
"@thesis-co/eslint-config": "github:thesis/eslint-config",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.10.0",
"hardhat-contract-sizer": "^2.5.0",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.5.1",
"prettier-plugin-sh": "^0.8.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-config-keep": "github:keep-network/solhint-config-keep",
"solidity-docgen": "^0.6.0-beta.34",
"ts-node": "^10.4.0",
"typechain": "^6.1.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">= 14.0.0"
}
}