-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
94 lines (94 loc) · 2.7 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "hardhat-gas-reporter",
"version": "2.2.1",
"description": "Gas Analytics plugin for Hardhat",
"repository": "github:cgewecke/hardhat-gas-reporter",
"author": "cgewecke",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"unit tests",
"gas"
],
"scripts": {
"lint": "npm run eslint",
"lint:fix": "npm run eslint -- --fix",
"eslint": "eslint 'src/**/*.ts' 'test/**/*.ts' -c ./eslintrc.js",
"gen:options": "ts-node scripts/gen-options-md.ts",
"test": "scripts/run-tests.sh",
"test:integration": "mocha test/integration/*.ts --timeout 100000 --exit",
"test:unit": "mocha test/unit/*.ts --timeout 10000",
"prepublishOnly": "tsc --project tsconfig.prod.json",
"build": "tsc --project tsconfig.prod.json",
"buidl": "tsc",
"watch": "tsc -w"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"resolutions": {
"glob/wrap-ansi": "7.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/hardhat-viem": "^2.0.0",
"@openzeppelin/contracts": "3.4.1-solc-0.7-2",
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"@openzeppelin/hardhat-upgrades": "^3.0.4",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "7.1.8",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.202",
"@types/markdown-table": "2.0.0",
"@types/mocha": "7",
"@types/node": "^8.10.38",
"@types/sha1": "^1.1.5",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"@uniswap/v3-core": "1.0.0",
"@uniswap/v3-periphery": "1.1.1",
"chai": "^4.2.0",
"chai-as-promised": "7.1.1",
"dotenv": "^6.2.0",
"eslint": "8.44.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-only-tests": "3.0.0",
"ethers": "^6.11.1",
"hardhat": "^2.20.1",
"mocha": "10.0.0",
"prettier": "2.4.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"typescript": "~5.0.4"
},
"peerDependencies": {
"hardhat": "^2.16.0"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@solidity-parser/parser": "^0.18.0",
"axios": "^1.6.7",
"brotli-wasm": "^2.0.1",
"chalk": "4.1.2",
"cli-table3": "^0.6.3",
"ethereum-cryptography": "^2.1.3",
"glob": "^10.3.10",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"markdown-table": "2.0.0",
"sha1": "^1.1.1",
"viem": "2.7.14"
}
}