This repository was archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
49
50
51
52
53
{
"name": "tips",
"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",
"postinstall": "make codegen && make typegen"
},
"dependencies": {
"@polkadot/api": "^7.13.1",
"@polkadot/util-crypto": "^10.1.4",
"@subsquid/archive-registry": "1.0.9",
"@subsquid/cli": "^0.6.0",
"@subsquid/graphql-server": "^1.1.0",
"@subsquid/ss58": "^0.1.1",
"@subsquid/substrate-processor": "1.5.1",
"@subsquid/typeorm-migration": "0.1.1",
"@subsquid/typeorm-store": "0.1.1",
"dotenv": "^10.0.0",
"pg": "^8.7.3",
"typeorm": "0.3.7"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "1.0.5",
"@subsquid/substrate-typegen": "1.2.1",
"@subsquid/typeorm-codegen": "0.1.0",
"@types/node": "16.11.47",
"typescript": "4.7.4"
},
"resolutions": {
"@polkadot/api": "^7.13.1",
"@polkadot/api-augment": "^7.13.1",
"@polkadot/api-base": "^7.13.1",
"@polkadot/api-contract": "^7.13.1",
"@polkadot/api-derive": "^7.13.1",
"@polkadot/rpc-augment": "^7.13.1",
"@polkadot/rpc-core": "^7.13.1",
"@polkadot/rpc-provider": "^7.13.1",
"@polkadot/types": "^7.13.1",
"@polkadot/types-augment": "^7.13.1",
"@polkadot/types-codec": "^7.13.1",
"@polkadot/types-create": "^7.13.1",
"@polkadot/types-known": "^7.13.1",
"@polkadot/types-support": "^7.13.1",
"@polkadot/util": "^8.7.1",
"@polkadot/util-crypto": "^8.7.1"
}
}