-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@meterio/scan-service",
"version": "0.0.1",
"description": "service backend for meter scan",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Simon Zhang",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/meterio/scan-service.git"
},
"bugs": {
"url": "https://github.com/meterio/scan-service/issues"
},
"tags": [
"typescript",
"meter",
"scan",
"explorer",
"api",
"Defi"
],
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"@types/lru-cache": "^7.4.0",
"@types/node": "^18.8.5",
"@types/object-hash": "^2.2.1",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.82.0",
"@meterio/devkit": "^1.8.2",
"@meterio/flex": "^0.5.9",
"@supercharge/promise-pool": "^2.1.0",
"@types/express": "^4.17.14",
"axios": "^1.1.2",
"bignumber.js": "^9.1.0",
"bitcoin-core": "^4.1.0",
"bitcoinjs-lib": "^6.0.2",
"commander": "^9.4.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"csv-parse": "^4.16.3",
"csv-stringify": "^5.6.5",
"dotenv": "^16.0.0",
"envalid": "^7.3.0",
"ethers": "^5.6.2",
"express": "^4.17.3",
"express-toolbox": "^0.1.1",
"json2csv": "^5.0.7",
"lru-cache": "^7.5.1",
"meterify": "^1.4.7",
"moment": "^2.29.4",
"mongoose": "^7.3.4",
"morgan": "^1.10.0",
"oauth-1.0a": "^2.2.6",
"object-hash": "^3.0.0",
"pino": "^8.6.1",
"pino-pretty": "^9.1.1",
"sha3": "^2.1.4",
"string-comparison": "^1.3.0",
"web3": "1.2.11"
},
"scripts": {
"start": "ts-node src/main.ts",
"build": "rm -fr dist && tsc -p ."
},
"bin": {
"scan-service": "dist/src/main.js"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}