forked from keep-network/tbtc-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "@keep-network/tbtc-v2-monitoring",
"version": "1.0.0-dev",
"license": "GPL-3.0-only",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "yarn run lint && prettier --check .",
"format:fix": "yarn run lint:fix && prettier --write .",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"postinstall": "npm rebuild bcrypto"
},
"dependencies": {
"@keep-network/tbtc-v2-mainnet": "npm:@keep-network/tbtc-v2@mainnet",
"@keep-network/tbtc-v2-testnet": "npm:@keep-network/tbtc-v2@sepolia",
"@keep-network/tbtc-v2.ts": "1.4.0-dev.1",
"@sentry/node": "^7.33.0",
"axios": "^1.3.2",
"ethers": "^5.5.2",
"node-json-db": "^2.1.4"
},
"devDependencies": {
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep",
"@thesis-co/eslint-config": "github:thesis/eslint-config",
"eslint": "8.22.0",
"prettier": "^2.3.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14 <15"
}
}