-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.91 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
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
89
90
91
92
93
94
95
96
97
{
"name": "btc-assets-api",
"version": "2.5.8",
"title": "Bitcoin/RGB++ Assets API",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch ./src/index.ts",
"start": "node ./dist/src/index.js",
"build": "tsc -p tsconfig.json",
"test": "vitest",
"format": "eslint --fix --ext .ts && prettier --write '**/*.ts'",
"coverage": "vitest run --coverage",
"postinstall": "npx simple-git-hooks"
},
"keywords": [],
"author": "Yuexun Jiang <[email protected]>",
"license": "ISC",
"simple-git-hooks": {
"pre-commit": "npx lint-staged && sh ./scripts/protect-branches.sh"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
},
"dependencies": {
"@cell-studio/mempool.js": "^2.4.0",
"@ckb-lumos/base": "^0.22.2 ",
"@ckb-lumos/ckb-indexer": "^0.22.2",
"@ckb-lumos/codec": "^0.22.2",
"@ckb-lumos/lumos": "0.22.2",
"@ckb-lumos/rpc": "^0.22.2",
"@fastify/compress": "^7.0.0",
"@fastify/cors": "^9.0.1",
"@fastify/http-proxy": "^9.4.0",
"@fastify/jwt": "^8.0.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/redis": "^6.1.1",
"@fastify/sensible": "^5.5.0",
"@fastify/swagger": "8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@immobiliarelabs/fastify-sentry": "^8.0.1",
"@nervosnetwork/ckb-sdk-utils": "^0.109.1",
"@rgbpp-sdk/btc": "0.0.0-snap-20250121061557",
"@rgbpp-sdk/ckb": "0.0.0-snap-20250121061557",
"@rgbpp-sdk/service": "0.0.0-snap-20250121061557",
"@sentry/node": "^7.102.1",
"@sentry/profiling-node": "^7.102.1",
"@spore-sdk/core": "^0.2.0-beta.9",
"@utxostack/metadata": "^0.0.6",
"async-retry": "^1.3.3",
"awilix": "^10.0.1",
"axios": "^1.7.7",
"bloom-filters": "^3.0.1",
"bullmq": "5.4.2",
"dotenv": "^16.4.2",
"fastify": "^4.26.0",
"fastify-cron": "^1.3.1",
"fastify-custom-healthcheck": "^3.1.0",
"fastify-plugin": "^4.5.1",
"fastify-type-provider-zod": "^1.1.9",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"multicoin-address-validator": "^0.5.16",
"p-limit": "^3.1.0",
"pino": "^8.19.0",
"std-env": "^3.7.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/lodash": "^4.17.0",
"@types/multicoin-address-validator": "^0.5.2",
"@types/node": "^20.11.17",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^1.3.1",
"@vitest/ui": "^1.3.1",
"bitcoinjs-lib": "^6.1.5",
"cross-env": "^7.0.3",
"ecpair": "^2.1.0",
"eslint": "^8.56.0",
"lint-staged": "^15.2.2",
"pino-pretty": "^10.3.1",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.10.0",
"tiny-secp256k1": "^2.2.3",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vercel": "^33.5.1",
"vitest": "^1.3.1"
}
}