-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.23 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.23 KB
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
62
63
64
65
66
67
68
{
"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",
"process:prod": "node deploy/run --npmScriptName=sqd:process:prod",
"serve:prod": "node deploy/run --npmScriptName=sqd:graphql:prod",
"tsc": "tsc",
"cannon": "cannon"
},
"dependencies": {
"@cartesi/rollups": "1.4.0",
"@cartesi/rollups-v2": "npm:@cartesi/rollups@2.1.1",
"@subsquid/evm-abi": "^0.3.1",
"@subsquid/evm-codec": "^0.3.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",
"abitype": "^1.0.6",
"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",
"@usecannon/cli": "^2.21.5",
"@vitest/coverage-v8": "^2",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5",
"vitest": "^2"
}
}