-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 759 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 759 Bytes
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
{
"name": "tx-replayer",
"version": "0.0.1",
"description": "A transaction replayer",
"main": "src/main.ts",
"home": "https://github.com/amochuko/tx-replayer#readme",
"scripts": {
"test": "jest --watch",
"test:coverage": "jest --forceExit --coverage --verbose",
"clean": "rm -rf ./dist",
"build": "tsc",
"dev": "nodemon",
"start": "npm run build && node ./dist/main.js"
},
"keywords": ["web3"],
"author": "Ochuko Awhe <7204868+amochuko@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"ethers": "^6.9.2"
},
"devDependencies": {
"@types/node": "^20.8.9",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}