-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "polkadot-watcher-transaction",
"version": "1.4.3",
"description": "Monitor events on Polkadot networks, specifically transactions",
"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",
"test": "mocha --timeout 60000 --require ts-node/register --exit test/*.ts test/**/*.ts",
"test:integration": "mocha --timeout 60000 --require ts-node/register --exit test/integration/*.ts",
"start": "node ./dist/index.js start"
},
"dependencies": {
"@polkadot/api": "^14.2.1",
"@w3f/config": "^0.1.1",
"@w3f/logger": "^0.4.2",
"commander": "^4.0.0",
"express": "^4.18.1",
"got": "^10.7.0",
"node-fetch": "^2.6.6",
"prom-client": "^12.0.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/express": "4.17.13",
"@types/fs-extra": "8.1.2",
"@types/lodash": "4.14.182",
"@types/mocha": "9.1.1",
"@types/node": "14.18.20",
"@types/sinon": "10.0.11",
"@types/tmp": "0.2.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@w3f/polkadot-api-client": "^1.3.0",
"@w3f/test-utils": "^1.4.0",
"chai": "4.3.6",
"eslint": "7.32.0",
"fs-extra": "9.1.0",
"lodash": "4.17.21",
"mocha": "9.2.2",
"nock": "12.0.3",
"sinon": "13.0.2",
"tmp": "0.2.1",
"ts-node": "10.8.0",
"typescript": "4.7.2"
},
"resolutions": {
"@polkadot/api": "^14.2.1"
}
}