-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.7 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
{
"name": "kilt-indexer",
"version": "1.0.0",
"description": "Indexing KILT's blockchain data, mostly related to Identity.",
"main": "dist/index.js",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=22"
},
"scripts": {
"codegen": "subql codegen",
"build": "subql build",
"start:docker": "docker compose pull && docker compose up --remove-orphans",
"dev": "subql codegen && subql build && docker compose pull && docker compose up --build --remove-orphans",
"prepack": "rm -rf dist && npm run build",
"test": "subql build && TZ=UTC subql-node test",
"slash": "yarn ts-node src/slash.ts",
"contained:test": "subql codegen && subql build && docker compose pull && SUB_COMMAND=test docker compose up --build --remove-orphans"
},
"homepage": "https://indexer.kilt.io/",
"repository": "github:KILTprotocol/kilt-indexer",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "KILT <info@kilt.io>",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"jsonabc": "^2.3.1"
},
"devDependencies": {
"@kiltprotocol/augment-api": "1.11504.0-rc.1",
"@kiltprotocol/type-definitions": "1.11502.1-rc.1",
"@kiltprotocol/types": "^0.100.0",
"@subql/cli": "^5.6.0",
"@subql/node": "^5.8.0",
"@subql/testing": "^2.2.3",
"@subql/types": "^3.12.0",
"@types/jsonabc": "^2.3.3",
"@types/node": "^20.14.11",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
},
"exports": {
"chaintypes": "./src/chaintypes.ts"
}
}