-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.5 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.5 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
{
"name": "sequence_sidekick",
"version": "v1.0.19-beta",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"start:withRedis": "redis-server --daemonize yes && tsx src/index.ts",
"dev:withRedis": "redis-server --daemonize yes && tsx watch src/index.ts",
"build": "tsc",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"docker:restart": "docker compose down && docker compose build --no-cache && docker compose up -d",
"docker:stop": "docker compose down -v",
"docker:start": "docker compose build --no-cache && docker compose up -d",
"docker:rebuild": "docker compose build --no-cache",
"stop:redis": "redis-server stop",
"start:redis": "redis-server --daemonize yes",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"tag:release": "sh ./scripts/tag-release.sh",
"postinstall": "prisma generate"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.1",
"@vitest/coverage-v8": "3.0.5",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2"
},
"dependencies": {
"@0xsequence/auth": "^2.3.27",
"@0xsequence/aws-kms-signer": "^0.1.1",
"@0xsequence/core": "^2.3.27",
"@0xsequence/google-kms-signer": "^0.2.0",
"@0xsequence/indexer": "^2.3.27",
"@0xsequence/network": "^2.3.27",
"@aws-sdk/client-kms": "^3.750.0",
"@bull-board/api": "^6.7.8",
"@bull-board/fastify": "^6.7.8",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/properties": "^5.7.0",
"@ethersproject/signing-key": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@fastify/cors": "^10.0.2",
"@fastify/rate-limit": "^10.2.2",
"@fastify/redis": "^7.0.2",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.1",
"@google-cloud/kms": "^4.5.0",
"@prisma/client": "^6.3.1",
"@sinclair/typebox": "^0.34.16",
"@types/bull": "^4.10.4",
"abitype": "^1.0.8",
"bull": "^4.16.5",
"dotenv": "^16.4.7",
"ethers": "^6.13.5",
"fastify": "^5.2.1",
"fastify-plugin": "^5.0.1",
"js-yaml": "^4.1.0",
"pino": "^9.7.0",
"prisma": "^6.3.1",
"prom-client": "^15.1.3",
"typescript": "^5.3.3",
"viem": "^2.22.23",
"vitest": "^3.0.5"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}