-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.86 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
{
"name": "san-chain-exporter",
"version": "0.1.3",
"description": "Exporter of all transfer events for a blockchain",
"main": "index.js",
"scripts": {
"test": "TEST_ENV=1 BLOCKCHAIN=eth CONTRACT_MAPPING_FILE_PATH=test/erc20/contract_mapping/contract_mapping.json LOG_LEVEL=error CONTRACT_MODE=extract_exact_overwrite mocha --config .mocharc.js --spec 'src/test/**/*.{ts,js}'",
"integration_test": "mocha --config .mocharc.js --spec 'integration_test/src/**/*.{ts,js}'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "npm run build && node --require source-map-support/register ./built/index.js",
"build": "rm -r -f ./built && tsc && ./copy_assets.sh",
"tsc_only": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/santiment/san-chain-exporter.git"
},
"author": "Santiment",
"license": "MIT",
"bugs": {
"url": "https://github.com/santiment/san-chain-exporter/issues"
},
"homepage": "https://github.com/santiment/san-chain-exporter#readme",
"dependencies": {
"@tsconfig/node21": "^21.0.3",
"bignumber.js": "^9.1.2",
"csv-parser": "^3.0.0",
"got": "^14.4.0",
"jayson": "^4.1.0",
"lodash": "^4.17.21",
"micro": "^10.0.1",
"node-json-logger": "^0.2.1",
"node-rdkafka": "3.0.1",
"node-zookeeper-client": "^1.1.3",
"p-queue": "^8.0.1",
"p-retry": "^6.2.0",
"prom-client": "^15.1.2",
"source-map-support": "^0.5.21",
"uuid": "^9.0.1",
"web3": "^4.9.0",
"web3-validator": "^2.0.6",
"xrpl": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/micro": "^10.0.0",
"@types/mocha": "^10.0.6",
"@types/uuid": "^9.0.8",
"@types/web3": "^1.2.2",
"earl": "^1.3.0",
"eslint": "^9.4.0",
"mocha": "^10.4.0",
"rewire": "^7.0.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}