generated from subsquid-labs/squid-substrate-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "kusama-transfers",
"private": true,
"engines" : {
"node" : ">=16"
},
"scripts": {
"build": "rm -rf lib && tsc",
"update": "npx npm-check-updates --filter /subsquid/ --upgrade && npm i -f",
"db:migrate": "npx squid-typeorm-migration apply",
"processor:start": "node lib/processor.js",
"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": {
"@subsquid/archive-registry": "2.1.13",
"@subsquid/graphql-server": "3.3.2",
"@subsquid/ss58": "0.1.4",
"@subsquid/substrate-processor": "2.4.1",
"@subsquid/typeorm-migration": "0.1.6",
"@subsquid/typeorm-store": "0.2.2",
"dotenv": "^16.0.0",
"pg": "8.9.0",
"typeorm": "0.3.11"
},
"devDependencies": {
"@subsquid/typeorm-codegen": "0.3.3",
"@subsquid/substrate-metadata-explorer": "1.1.2",
"@subsquid/substrate-typegen": "2.2.1",
"@types/node": "18.11.18",
"typescript": "4.9.5"
}
}