-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "xchain-tx-indexer-poc",
"version": "1.0.0",
"description": "Design and PoC implementation of a Blockchain indexer which can subscribe for multiple addresses transactions on different EVM compatible networks to do transaction analysis.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc",
"start:dev": "ts-node --project tsconfig.dev.json ./src/index.ts",
"test": "jest",
"lint": "prettier --write \"**/*.{js,ts,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yengas/xchain-tx-indexer-poc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yengas/xchain-tx-indexer-poc/issues"
},
"homepage": "https://github.com/Yengas/xchain-tx-indexer-poc#readme",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"alchemy-sdk": "^2.6.1",
"bee-queue": "^1.5.0",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"knex": "^2.4.2",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}