Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
36 lines (36 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 955 Bytes
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
{
"name": "stackpay-backend",
"version": "0.1.0",
"description": "Indexer & REST/WebSocket API for StackPay.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node --import tsx src/index.ts",
"indexer": "node --import tsx src/indexer.ts",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"lint": "eslint . --ext .ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev"
},
"dependencies": {
"@stellar/stellar-sdk": "^12.0.0",
"express": "^4.19.2",
"socket.io": "^4.7.5",
"@prisma/client": "^5.16.0",
"bullmq": "^5.7.0",
"ioredis": "^5.4.1",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0",
"eslint": "^9.5.0",
"prisma": "^5.16.0"
}
}