-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "@kodadot1/stick",
"version": "0.2.0",
"description": "AssetHub block indexer and graphql server",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rm -rf lib && tsc",
"test": "vitest run",
"update": "npx npm-check-updates --filter /subsquid/ --upgrade && npm i -f",
"db:migrate": "npx squid-typeorm-migration apply",
"processor:start": "node lib/processor.js",
"lint:fix": "eslint --fix --quiet --ignore-path .gitignore --ext .js,.ts .",
"query-node:start": "squid-graphql-server --subscriptions --max-response-size 10000 --dumb-cache in-memory --dumb-cache-ttl 1000 --dumb-cache-size 100 --dumb-cache-max-age 1000"
},
"dependencies": {
"@kodadot1/hyperdata": "^0.0.1-rc.5",
"@kodadot1/metasquid": "^0.3.1-rc.0",
"@kodadot1/minipfs": "^0.5.0-rc.0",
"@subsquid/archive-registry": "3.3.2",
"@subsquid/graphql-server": "4.9.0",
"@subsquid/ss58": "2.0.2",
"@subsquid/substrate-processor": "8.5.1",
"@subsquid/typeorm-migration": "1.3.0",
"@subsquid/typeorm-store": "1.5.1",
"dotenv": "^16.4.5",
"md5": "^2.3.0",
"nanoid": "3.3.4",
"pg": "^8.13.0",
"type-graphql": "^1.2.0-rc.1",
"typeorm": "0.3.20"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "3.2.0",
"@subsquid/substrate-typegen": "8.1.0",
"@subsquid/typeorm-codegen": "2.0.2",
"@types/md5": "^2.3.5",
"@types/node": "22.7.4",
"@types/pg": "^8.11.10",
"eslint": "^9.11.1",
"eslint-config-unjs": "^0.4.1",
"prettier": "^3.3.3",
"typescript": "~5.6.2",
"vitest": "^2.1.2"
}
}