forked from TricklePay/tricklepay-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "tricklepay-backend",
"version": "0.1.0",
"description": "Indexer and read API for TricklePay token streams on Stellar",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.12"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && tsc -p tsconfig.test.json",
"replay-failed-events": "tsx src/indexer/replay.ts",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev"
},
"dependencies": {
"@fastify/cors": "^11.3.0",
"@fastify/swagger": "^9.8.1",
"@fastify/swagger-ui": "^6.1.1",
"@prisma/client": "^6.2.1",
"@stellar/stellar-sdk": "^13.1.0",
"fastify": "^5.2.1",
"pino": "^9.6.0"
},
"devDependencies": {
"@types/node": "^22.20.1",
"prisma": "^6.2.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.1.10"
}
}