forked from Vera3289/paystream-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.3 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
55
{
"name": "paystream-contracts-api",
"version": "1.0.0",
"description": "REST API wrapper for PayStream smart contracts",
"main": "api/server.js",
"scripts": {
"start": "node api/server.js",
"dev": "nodemon api/server.js",
"test": "jest",
"lint": "eslint api/",
"format": "prettier --write api/"
},
"keywords": [
"paystream",
"stellar",
"soroban",
"api",
"blockchain"
],
"author": "PayStream Team",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.1057.0",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"express-validator": "^7.0.1",
"helmet": "^8.2.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemailer": "^8.0.10",
"pg": "^8.21.0",
"bullmq": "^5.8.0",
"ioredis": "^5.11.0",
"@bull-board/api": "^5.21.3",
"@bull-board/express": "^5.21.3",
"soroban-client": "^1.0.0",
"stellar-sdk": "^13.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"eslint": "^10.4.1",
"jest": "^30.4.2",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^7.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}