-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "@tenderly/hardhat-tenderly",
"author": "Tenderly",
"license": "MIT",
"homepage": "https://tenderly.co",
"description": "Hardhat plugin for integration with Tenderly",
"version": "2.2.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Tenderly/hardhat-tenderly.git"
},
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"tenderly"
],
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf ./dist && tsc --build .",
"clean": "rm -rf node_modules && rm -rf dist",
"lint": "yarn run prettier --check && yarn run eslint",
"lint:fix": "yarn run prettier --write && yarn run eslint --fix",
"eslint": "eslint 'src/**/*.ts'",
"prettier": "prettier \"**/*.{js,md,json}\"",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.19.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@openzeppelin/hardhat-upgrades": "^3.0.1",
"@openzeppelin/upgrades-core": "^1.32.2",
"axios": "^1.6.7",
"ethers": "^6.8.1",
"fs-extra": "^10.1.0",
"hardhat-deploy": "^0.11.43",
"tenderly": "^0.9.1",
"ts-node": "^10.9.1",
"tslog": "^4.3.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"ethers": "^6.8.1",
"hardhat": "^2.19.0"
}
}