-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 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
{
"name": "leaseflow-backend",
"version": "1.0.0",
"description": "Indexer for LeaseFlow Protocol",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"load-test:rent-day": "k6 run --vus 100 --duration 30s src/tests/k6/rent-day-stress-test.js",
"load-test:rent-day:full": "k6 run --vus 10000 --duration 30m src/tests/k6/rent-day-stress-test.js",
"load-test:invoice": "k6 run src/tests/k6/invoice-generation-test.js",
"load-test:all": "npm run load-test:rent-day && npm run load-test:invoice"
},
"dependencies": {
"@sentry/node": "^7.91.0",
"@stellar/stellar-sdk": "^14.6.1",
"algosdk": "^2.0.0",
"axios": "^1.13.6",
"busboy": "^1.6.0",
"cors": "^2.8.6",
"crypto-js": "^4.2.0",
"dotenv": "^17.3.1",
"eciesjs": "^0.4.18",
"express": "^5.2.1",
"ipfs-http-client": "^60.0.1",
"multer": "^2.1.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.7",
"pg": "^8.11.3",
"sharp": "^0.34.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"jest": "^30.3.0",
"k6": "^0.0.0",
"supertest": "^7.2.2"
}
}