-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.38 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
{
"name": "polka-store",
"version": "1.6.0",
"description": "Store balance-relevant transactions from a Polkadot chain in a database",
"main": "main.js",
"scripts": {
"build": "tsc",
"lint": "tsc && eslint . --ext ts",
"polkadot": "node ./build/main.js Polkadot 2> logs/`date +%Y%m%d_%H%M_polkadot.err`",
"kusama": "node ./build/main.js Kusama 2> logs/`date +%Y%m%d_%H%M_kusama.err`",
"westend": "node ./build/main.js Westend 2> logs/`date +%Y%m%d_%H%M_westend.err`",
"check_polkadot": "node ./build/check.js Polkadot",
"check_kusama": "node ./build/check.js Kusama",
"check_westend": "node ./build/check.js Westend",
"dev": "tsc-watch --onSuccess \"node ./build/main.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@jsbits/get-package-version": "^1.0.3",
"@polkadot/api": "^8.0.1",
"@types/better-sqlite3": "^5.4.0",
"@types/sprintf-js": "^1.1.2",
"ajv": "=7.1.1",
"better-sqlite3-helper": "^3.1.0",
"bn": "^1.0.5",
"chalk": "^4.1.0",
"fs": "^0.0.1-security",
"jshint": "^2.12.0",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.4"
}
}