-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 2 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
61
{
"name": "@cartesi/rollups-explorer-api",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "run-s clean sqd:typegen sqd:codegen tsc",
"clean": "rm -rf lib",
"test": "vitest",
"ci:test": "vitest run --coverage",
"sqd": "sqd",
"sqd:build": "sqd build",
"sqd:codegen": "sqd codegen",
"sqd:typegen": "sqd typegen",
"sqd:up": "sqd up",
"sqd:down": "sqd down",
"sqd:migration": "sqd migration",
"sqd:process": "sqd process",
"sqd:process:prod": "sqd process:prod",
"sqd:graphql": "sqd serve",
"sqd:graphql:prod": "sqd serve:prod",
"sqd:auth": "sqd auth -k $SQD_API_KEY",
"sqd:deploy": "sqd deploy -o cartesi -m",
"sqd:deploy:mainnet": "run-s \"sqd:deploy -- {@} .\" -- \"squid-mainnet.yaml\"",
"sqd:deploy:sepolia": "run-s \"sqd:deploy -- {@} .\" -- \"squid-sepolia.yaml\"",
"preload:apps": "run-p preload:apps:mainnet preload:apps:sepolia",
"preload:apps:mainnet": "CHAIN_ID=1 sqd preload:apps",
"preload:apps:sepolia": "CHAIN_ID=11155111 sqd preload:apps",
"tsc": "tsc",
"process:prod": "node deploy/run --npmScriptName=sqd:process:prod",
"serve:prod": "node deploy/run --npmScriptName=sqd:graphql:prod"
},
"dependencies": {
"@cartesi/rollups": "1.4.0",
"@subsquid/evm-processor": "^1.4.0",
"@subsquid/file-store": "^2.0.0",
"@subsquid/graphql-server": "^4.2.0",
"@subsquid/logger": "^1.3.0",
"@subsquid/typeorm-migration": "^1.2.0",
"@subsquid/typeorm-store": "^1.2.0",
"dotenv": "^16.1.4",
"ethers": "^6.5.1",
"pg": "^8.11.0",
"rimraf": "^6.0.1",
"shelljs": "^0.8.5",
"type-graphql": "^1.2.0-rc.1",
"typeorm": "^0.3.16",
"viem": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@subsquid/cli": "latest",
"@subsquid/evm-typegen": "^4.3.0",
"@subsquid/typeorm-codegen": "^2.0.2",
"@types/node": "^22.1.0",
"@vitest/coverage-v8": "^2",
"npm-run-all": "^4.1.5",
"typescript": "^5",
"vitest": "^2"
}
}