-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.88 KB
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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "interbtc-indexer",
"private": "true",
"version": "0.16.7",
"description": "GraphQL server and Substrate indexer for the interBTC parachain",
"author": "",
"license": "ISC",
"scripts": {
"build": "rm -rf lib && tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"gen:json": "node indexer/generateTypes.js",
"gen:explore:interlay": "squid-substrate-metadata-explorer --chain wss://api.interlay.io/parachain --archive https://interlay.archive.subsquid.io/graphql --out indexer/interlay.chainVersions.jsonl",
"gen:explore:kintsugi": "squid-substrate-metadata-explorer --chain wss://api-kusama.interlay.io/parachain --archive https://kintsugi.archive.subsquid.io/graphql --out indexer/kintsugi.chainVersions.jsonl",
"gen:explore:testnet": "squid-substrate-metadata-explorer --chain wss://api-testnet.interlay.io/parachain --archive https://api-testnet.interlay.io/subsquid-explorer/graphql --out indexer/testnet.chainVersions.jsonl",
"gen:explore:kintnet": "squid-substrate-metadata-explorer --chain wss://api-dev-kintsugi.interlay.io/parachain --archive https://api-dev-kintsugi.interlay.io/subsquid-explorer/graphql --out indexer/kintnet.chainVersions.jsonl",
"gen:explore:localtest": "squid-substrate-metadata-explorer --chain ws://127.0.0.1:9944 --out indexer/localtest.chainVersions.jsonl",
"gen:types:interlay": "squid-substrate-typegen interlay.typegen.json",
"gen:types:kintsugi": "squid-substrate-typegen kintsugi.typegen.json",
"gen:types:testnet": "squid-substrate-typegen testnet.typegen.json",
"gen:types:combined": "squid-substrate-typegen combined.typegen.json",
"gen:code": "squid-typeorm-codegen",
"db:create-migration": "squid-typeorm-migration generate",
"db:migrate": "squid-typeorm-migration apply",
"processor:start": "node -r dotenv/config lib/processor.js",
"query-node:start": "squid-graphql-server"
},
"dependencies": {
"@interlay/interbtc-api": "2.8.0",
"@interlay/interbtc-types": "1.1.1",
"@polkadot/util-crypto": "^12.6.2",
"@subsquid/archive-registry": "^1.0.12",
"@subsquid/big-decimal": "^0.0.0",
"@subsquid/graphql-server": "^3.3.0",
"@subsquid/ss58": "^0.1.0",
"@subsquid/substrate-processor": "^2.0.2",
"@subsquid/typeorm-codegen": "0.3.0",
"@subsquid/typeorm-migration": "^0.1.4",
"@subsquid/typeorm-store": "^0.1.5",
"bitcoinjs-lib": "^5.2.0",
"class-validator": "^0.14.0",
"dotenv": "^16.4.7",
"lodash": "^4.17.21",
"pg": "^8.8.0",
"type-graphql": "^1.1.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@interlay/interbtc-types": "1.1.1",
"@subsquid/cli": "^0.7.4",
"@subsquid/substrate-metadata-explorer": "^1.0.9",
"@subsquid/substrate-typegen": "^1.5.1",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.14.191",
"@types/node": "^22.13.4",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"ts-jest": "^29.1.1",
"typescript": "^5.7.3"
},
"prettier": {
"singleQuote": false,
"tabWidth": 4
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts*"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/",
"<rootDir>/db/migrations/",
"<rootDir>/src/model/generated/",
"<rootDir>/src/types/"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}