-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "polkadot-watcher-csv-exporter",
"version": "0.5.2",
"description": "Monitor events on Polkadot networks and export a csv dataset",
"repository": "[email protected]:w3f/polkadot-watcher-csv-exporter.git",
"author": "W3F Infrastructure Team <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc --build tsconfig.json",
"prepare": "yarn build",
"pretest": "yarn lint",
"start": "node --max-old-space-size=2048 ./dist/index.js start"
},
"dependencies": {
"@google-cloud/storage": "^5.3.0",
"@polkadot/api": "^4.10.1",
"@w3f/config": "^0.1.1",
"@w3f/logger": "^0.4.2",
"commander": "^4.0.0",
"express": "^4.17.1",
"fast-crc32c": "^2.0.0",
"got": "^10.3.0",
"prom-client": "^11.5.3",
"ws": "6.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/express": "^4.17.6",
"@types/fs-extra": "^8.1.0",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.1",
"@types/node": "^14.14.32",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"fs-extra": "^9.0.0",
"lodash": "^4.17.15",
"mocha": "^8.4.0",
"nock": "^12.0.3",
"sinon": "^8.1.0",
"tmp": "^0.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}