-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 901 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
37
{
"name": "procyon",
"version": "1.0.0",
"description": "Payment acceptance service: invoices, signed webhooks, exactly-once crediting",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"express": "5.2.1",
"ioredis": "5.11.1",
"mongoose": "8.24.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/express": "5.0.6",
"@types/ioredis-mock": "^8.2.7",
"@types/node": "22.19.21",
"@types/supertest": "7.2.0",
"ioredis-mock": "8.13.1",
"mongodb-memory-server": "11.2.0",
"supertest": "7.2.2",
"tsx": "4.22.4",
"typescript": "5.9.3",
"vitest": "4.1.8"
}
}