-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "zeitgeist-squid",
"private": true,
"version": "0.0.1",
"description": "Zeitgeist chain block indexer and graphql server",
"author": "",
"license": "ISC",
"scripts": {
"api:start": "squid-graphql-server --subscriptions",
"api:stop": "./scripts/deploy/api.sh stop",
"build": "rm -rf lib && tsc",
"codegen": "npx squid-typeorm-codegen",
"db:down": "docker-compose down",
"db:up": "docker-compose up -d",
"db:restart": "docker-compose down && docker-compose up -d",
"migration:apply": "squid-typeorm-migration apply",
"migration:generate": "squid-typeorm-migration generate",
"migration:revert": "npx squid-typeorm-migration revert",
"processor:start": "yarn migration:apply && node lib/main.js",
"processor:stop": "sh scripts/deploy/processor.sh stop",
"spin": "yarn db:restart && yarn build && yarn migration:apply && NODE_ENV=local node lib/main.js",
"typegen": "squid-substrate-typegen typegen.json"
},
"dependencies": {
"@subsquid/archive-registry": "^3.3.0",
"@subsquid/graphql-server": "^4.3.1",
"@subsquid/ss58": "^2.0.1",
"@subsquid/substrate-processor": "^8.1.1",
"@subsquid/substrate-runtime": "^1.0.0",
"@subsquid/typeorm-migration": "^1.2.2",
"@subsquid/typeorm-store": "^1.2.3",
"@types/redis": "^2.8.27",
"@zeitgeistpm/sdk": "^0.9.1",
"axios": "^1.2.5",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"ipfs-http-client": "^49.0.4",
"it-all": "^1.0.4",
"mem-fs": "^1.2.0",
"mem-fs-editor": "^8.1.2",
"nedb-promises": "4.1.3",
"redis": "^3.0.2",
"tslib": "^2.0.0",
"type-graphql": "^1.1.1",
"typeorm": "^0.3.17",
"uint8arrays": "^2.1.4"
},
"devDependencies": {
"@subsquid/cli": "2.1.3",
"@subsquid/substrate-metadata-explorer": "^3.1.1",
"@subsquid/substrate-typegen": "^8.0.1",
"@subsquid/typeorm-codegen": "^1.3.2",
"@types/node": "^18.18.0",
"@types/ws": "^8.5.4",
"decimal.js": "^10.3.1",
"dotenv-expand": "^8.0.3",
"ts-node": "^9.0.0",
"typescript": "~5.2.2"
}
}