-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.66 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "chain-cast",
"version": "1.2.1",
"description": "An open-source blockchain event processing platform designed to listen, process and stream events from smart contracts deployed on various EVM blockchain networks",
"main": "src/main.ts",
"bin": {
"castc": "./src/dsl/cli/castc.ts"
},
"scripts": {
"dev": "bun --watch src/main.ts",
"dev:debug": "bun --inspect=4321 --watch src/main.ts",
"start": "NODE_ENV=production bun src/main.ts",
"build": "bun install && bunx prisma generate",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:debug": "bun test --inspect-brk",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"lint:unsafe": "biome lint --write --unsafe .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"db:reset": "bunx prisma migrate reset --force",
"db:migrate": "bunx prisma migrate dev",
"db:push": "bunx prisma db push",
"castc": "bun src/dsl/cli/castc.ts",
"castc:compile": "bun src/dsl/cli/castc.ts compile",
"castc:validate": "bun src/dsl/cli/castc.ts validate",
"castc:decompile": "bun src/dsl/cli/castc.ts decompile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/layerx-labs/chain-cast.git"
},
"author": "LayerX Labs <gm@layerx.xyz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/layerx-labs/chain-cast/issues"
},
"homepage": "https://github.com/layerx-labs/chain-cast#readme",
"keywords": [
"blockchain",
"events",
"smart-contracts",
"graphql",
"ethereum",
"defi",
"web3",
"event-processing",
"chaincast",
"evm"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/uuid": "^9.0.8",
"husky": "^8.0.3",
"prisma": "^4.16.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@elastic/elasticsearch": "^8.19.1",
"@envelop/core": "^4.0.3",
"@envelop/graphql-middleware": "^5.0.3",
"@graphql-yoga/node": "^3.9.1",
"@paljs/plugins": "^5.3.3",
"@pothos/core": "^3.41.2",
"@pothos/plugin-prisma": "^3.65.3",
"@pothos/plugin-validation": "^3.10.2",
"@prisma/client": "^4.16.2",
"@taikai/scribal": "^1.0.4",
"@types/express": "^4.17.25",
"axios": "^1.13.2",
"bullmq": "^3.16.2",
"commander": "^14.0.2",
"express": "^4.22.1",
"googleapis": "^118.0.0",
"graphql": "^16.12.0",
"graphql-request": "^7.4.0",
"graphql-scalars": "^1.25.0",
"handlebars": "^4.7.8",
"inflection": "^2.0.1",
"viem": "^2.43.5",
"yaml": "^2.8.2",
"zod": "^3.25.76"
}
}