-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 945 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
{
"name": "rinha-backend-2025",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "npx ts-node src/index.ts",
"rinha:up": "docker-compose -f ./rinha/payment-processor/docker-compose.yml up -d",
"rinha:test": "npx ts-node src/scripts/flush.ts && k6 run rinha/rinha-test/rinha.js && npx ts-node src/scripts/flush.ts",
"compose:up": "docker-compose -f docker-compose.yml up -d",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@koa/router": "^13.1.1",
"bullmq": "^5.56.3",
"dotenv": "^17.0.1",
"koa": "^3.0.0",
"koa-bodyparser": "^4.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/node": "^24.0.12",
"ioredis": "^5.6.1"
}
}