-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 1.42 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
{
"name": "polkassembly",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rm -rf lib && tsc",
"db:migrate": "npx squid-typeorm-migration apply",
"db:create-migration": "npx squid-typeorm-migration generate",
"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",
"api:bump": "npm i @subsquid/substrate-typegen@latest @subsquid/substrate-metadata-explorer@latest @subsquid/substrate-processor@latest @subsquid/typeorm-migration@latest @subsquid/typeorm-store@latest @subsquid/typeorm-codegen@latest @subsquid/archive-registry@latest @subsquid/graphql-server@latest @subsquid/ss58@latest"
},
"dependencies": {
"@subsquid/archive-registry": "^3.3.2",
"@subsquid/graphql-server": "^4.6.0",
"@subsquid/ss58": "^2.0.2",
"@subsquid/substrate-processor": "^8.3.1",
"@subsquid/typeorm-migration": "^1.3.0",
"@subsquid/typeorm-store": "^1.5.1",
"dotenv": "^16.0.0",
"node-fetch": "^2.6.11",
"pg": "8.9.0",
"typeorm": "0.3.17"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "^3.1.2",
"@subsquid/substrate-typegen": "^8.1.0",
"@subsquid/typeorm-codegen": "^2.0.1",
"@types/node": "18.11.18",
"@types/node-fetch": "^2.6.4",
"typescript": "4.9.4"
}
}