-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.04 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
{
"name": "evm-event-listener",
"version": "0.0.1",
"description": "Listens to evm compatible events depending on the address",
"private": true,
"repository": "https://github.com/diegoxter/eventListener",
"author": "Jiego",
"license": "MIT",
"scripts": {
"format:check": "prettier --check ./**/*.{js,ts,sol}",
"run:control": "hardhat run ./controlPanel.ts --network sepolia",
"run:listen": "node ./index.ts -r",
"run:reply": "node ./index.ts",
"format:write": "prettier --write ./**/*.{js,ts,sol}"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.2",
"hardhat": "^2.11.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"hardhat-abi-exporter": "2.0.6",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"ethers": "^5.0.23",
"dotenv": "^8.2.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solidity-coverage": "^0.7.13",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}