-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 931 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
{
"name": "trustrent",
"version": "0.1.0",
"description": "Transparent, programmable rental payments on the Stellar blockchain",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"indexer": "node src/stellar/indexer.js",
"migrate": "node src/db/migrate.js",
"test": "jest --testPathPattern=tests/unit",
"test:testnet": "jest --testPathPattern=tests/integration"
},
"dependencies": {
"@stellar/stellar-sdk": "12.3.0",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.19.2",
"express-rate-limit": "7.3.1",
"express-validator": "7.1.0",
"jsonwebtoken": "9.0.2",
"pg": "8.12.0",
"pg-format": "1.0.4",
"uuid": "10.0.0"
},
"devDependencies": {
"jest": "29.7.0",
"nodemon": "3.1.4",
"supertest": "7.0.0"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}