-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·36 lines (36 loc) · 1.11 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
{
"name": "cointracking_polka",
"version": "1.3.0",
"description": "Staking reports for cointracking.info",
"main": "src/main.ts",
"repository": "[email protected]:TheGoldenEye/cointracking_polka.git",
"author": "TheGoldenEye <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"lint": "tsc && eslint . --ext ts",
"polkadot": "node ./build/main.js Polkadot",
"kusama": "node ./build/main.js Kusama",
"westend": "node ./build/main.js Westend",
"dev": "tsc-watch --onSuccess \"node ./build/main.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@jsbits/get-package-version": "^1.0.3",
"@types/better-sqlite3": "^5.4.1",
"@types/sprintf-js": "^1.1.2",
"ajv": "^7.0.2",
"better-sqlite3-helper": "^3.1.1",
"bn": "^1.0.5",
"chalk": "^4.1.0",
"fs": "^0.0.1-security"
},
"devDependencies": {
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.3"
}
}