-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.15 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
{
"name": "tetu_strategies_ethereum",
"version": "1.0.0",
"description": "Tetu strategies on Ethereum",
"main": "hardhat.config.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npm run build && npx hardhat test",
"coverage": "npm run build && npx cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" hardhat coverage --temp artifacts --max-memory 4096",
"slither": "npm run build && slither .",
"lint": "tslint -p tsconfig.json",
"lint-fix": "tslint --fix -p tsconfig.json",
"update-block": "ts-node scripts/utils/tools/UpdateBlock.ts"
},
"keywords": [
"solidity",
"ethereum",
"polygon",
"bsc",
"smart",
"contracts",
"tetu"
],
"author": "TETU team <[email protected]>",
"license": "ISC",
"homepage": "https://tetu.io/",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@tetu_io/tetu-contracts": "1.9.1",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-string": "^1.4.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.1.2",
"axios": "^1.4.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"ethereum-waffle": "^4.0.10",
"ethereumjs-tx": "^2.1.2",
"ethers": "5.7.2",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"hardhat": "^2.14.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-etherscan-abi": "^0.3.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-tracer": "^2.2.2",
"mocha": "^10.2.0",
"solidity-coverage": "^0.8.2",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslog": "^4.8.2",
"typechain": "^8.1.1",
"typescript": "^5.0.4",
"yargs": "^17.7.2"
},
"engines": {
"node": "^18.x.x"
}
}