-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.43 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "chainflip-eth-exporter",
"version": "1.0.0",
"description": "",
"engines": {
"node": "18.17.0",
"pnpm": ">=7"
},
"main": "src/app.ts",
"scripts": {
"start": "node dist/src/app.js",
"build": "tsc",
"lint": "eslint ./src*",
"prettier": "pnpm exec prettier --write src/**/*.ts src/*.ts src/**/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"metrics": "curl localhost:9000/metrics",
"dev": "tsx watch src/app.ts",
"start:dev:local": "CF_NETWORK=localnet pnpm dev",
"start:dev:backspin": "CF_NETWORK=backspin pnpm dev",
"start:dev:sisyphos": "CF_NETWORK=sisyphos pnpm dev",
"start:dev:berghain": "CF_NETWORK=berghain pnpm dev",
"start:dev:perseverance": "CF_NETWORK=perseverance pnpm dev",
"schema": "pnpm ts-json-schema-generator --path './src/config/interfaces/index.ts' --id 'ConfigSchema' --tsconfig './tsconfig.json' --out './config/schema.json' ",
"validate": "pnpm tsc --project tsconfig.validation.json && node ./dist/validation.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chainflip-io/chainflip-eth-exporter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chainflip-io/chainflip-eth-exporter/issues"
},
"homepage": "https://github.com/chainflip-io/chainflip-eth-exporter#readme",
"dependencies": {
"@moralisweb3/common-evm-utils": "^2.13.0",
"@polkadot/api": "^9.13.6",
"@polkadot/types": "^10.12.4",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.3.2",
"@solana/web3.js": "^1.95.3",
"@types/node": "^18.16.3",
"alchemy-sdk": "^2.4.2",
"axios": "^1.4.0",
"bitcoin-core": "^4.1.0",
"bs58": "^6.0.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"moralis": "^2.13.0",
"prom-client": "^14.1.1",
"ts-json-schema-generator": "^1.2.0",
"winston": "^3.8.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "2.8.8",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
}
}