forked from subsquid-labs/squid-substrate-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 908 Bytes
/
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",
"db:migrate": "npx squid-typeorm-migration apply",
"processor:start": "node lib/processor.js",
"query-node:start": "squid-graphql-server --subscriptions"
},
"dependencies": {
"@subsquid/archive-registry": "1.0.12",
"@subsquid/cli": "0.6.0",
"@subsquid/graphql-server": "2.1.0",
"@subsquid/ss58": "^0.1.1",
"@subsquid/substrate-processor": "1.7.0",
"@subsquid/typeorm-migration": "0.1.2",
"@subsquid/typeorm-store": "0.1.2",
"dotenv": "^10.0.0",
"pg": "8.8.0",
"typeorm": "0.3.9"
},
"devDependencies": {
"@subsquid/typeorm-codegen": "0.1.1",
"@subsquid/substrate-metadata-explorer": "1.0.6",
"@subsquid/substrate-typegen": "1.2.2",
"@types/node": "16.11.56",
"typescript": "4.8.2"
}
}