-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 806 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 806 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
{
"dependencies": {
"@types/node": "^18.13.0",
"axios": "^1.3.2",
"ethers": "6.0.3",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"prettier": "^2.8.4",
"ts-node": "10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc --build ./tsconfig.json",
"run:parse": "ts-node ./src/index.ts",
"run:parse:spokeconnector": "ts-node ./src/spokeconnector.ts",
"run:trim": "ts-node ./src/trim.ts",
"run:reset": "rm ./analytics.csv ./metadata.json",
"prettier": "prettier --write src"
},
"name": "log-parser",
"version": "0.0.1",
"description": "Event parser for EVM transactions",
"main": "index.js",
"repository": "https://github.com/wanglonghong/log-parser.git",
"author": "wanglonghong",
"license": "MIT",
"private": true
}