-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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": "relayer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "tap --ts",
"prestart": "npm run build",
"start": "node dist/index.js",
"build": "rm -rf dist && tsc",
"lint": "eslint . --ext .ts",
"create-feeds": "npm run build; node dist/tools/create-feeds.js",
"download": "npm run build; node dist/tools/download-substrate-blocks.js",
"fetch": "npm run build; node dist/tools/continuous-fetch-blocks-to-archive.js",
"balances": "npm run build; node dist/tools/list-account-balances.js",
"fund": "npm run build; node dist/tools/fund-accounts.js"
},
"keywords": [],
"author": "",
"license": "Apache 2.0",
"dependencies": {
"@polkadot/api": "^8.2.1",
"@polkadot/keyring": "^9.0.1",
"@polkadot/types": "^8.2.1",
"@polkadot/util": "^9.0.1",
"@polkadot/util-crypto": "^9.0.1",
"dotenv": "^10.0.0",
"levelup": "^5.1.1",
"p-retry": "^4.6.1",
"pino": "^6.13.2",
"pino-pretty": "^7.0.1",
"prom-client": "^14.0.1",
"rocksdb": "^5.1.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@types/pino": "^6.3.11",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-plugin-eslint-plugin": "^3.5.3",
"tap": "^15.0.10",
"ts-node": "^10.4.0",
"typescript": "^4.6.3"
}
}