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
48 lines (48 loc) · 1.08 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"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": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemailer": "^8.0.9",
"pg": "^8.21.0",
"soroban-client": "^1.0.0",
"stellar-sdk": "^11.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}