-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "crosspay-engine",
"version": "1.0.0",
"description": "Cross-border payment orchestration engine. Multi-currency processing, real-time FX, sanctions screening, IBAN/SWIFT validation, and full payment lifecycle management.",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --coverage --forceExit",
"test:watch": "jest --watch",
"test:adversarial": "jest tests/adversarial/ --verbose --forceExit --passWithNoTests",
"lint": "eslint src/ tests/",
"db:migrate": "node src/db/migrate.js up",
"db:rollback": "node src/db/migrate.js down",
"db:seed": "node src/db/seed.js",
"health": "curl -s http://localhost:3000/health | jq"
},
"keywords": [
"payments",
"cross-border",
"foreign-exchange",
"sanctions-screening",
"IBAN",
"SWIFT",
"multi-currency",
"fintech"
],
"author": "Henry Wyndham",
"license": "MIT",
"dependencies": {
"fastify": "^5.2.0",
"@fastify/cors": "^10.0.0",
"@fastify/helmet": "^13.0.0",
"@fastify/rate-limit": "^10.2.0",
"pg": "^8.13.1",
"dotenv": "^16.4.7",
"uuid": "^11.1.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"ioredis": "^5.4.2",
"zod": "^3.24.2",
"cron": "^3.3.1",
"node-cron": "^3.0.3"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"eslint": "^9.18.0",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}