forked from Manuel1234477/Stellar-Micro-Donation-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.51 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.51 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
{
"name": "stellar-micro-donation-api",
"version": "1.0.0",
"description": "Micro-donation API using Stellar blockchain",
"main": "src/routes/app.js",
"scripts": {
"start": "node src/routes/app.js",
"init-db": "node src/scripts/initDB.js",
"migrate:memo": "node src/scripts/addMemoColumn.js",
"migrate:currency": "node src/scripts/migrations/addCurrencyColumns.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:ci": "jest --coverage --ci --maxWorkers=2",
"check-coverage": "node scripts/check-coverage.js",
"lint": "eslint .",
"lint:security": "eslint . --ext .js --format stylish",
"security:scan": "node src/scripts/security-scan.js",
"keys": "node src/scripts/manageApiKeys.js",
"keys:create": "node src/scripts/manageApiKeys.js create",
"keys:list": "node src/scripts/manageApiKeys.js list",
"keys:help": "node src/scripts/manageApiKeys.js help",
"validate:rbac": "node scripts/validate-rbac.js"
},
"dependencies": {
"dotenv": "^17.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.3.1",
"helmet": "^8.1.0",
"nodemailer": "^8.0.3",
"pdfkit": "^0.18.0",
"qrcode": "^1.5.4",
"sqlite3": "^5.1.7",
"stellar-sdk": "^11.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-no-secrets": "^2.2.2",
"eslint-plugin-security": "^4.0.0",
"jest": "^29.7.0",
"madge": "^8.0.0",
"nodemon": "^2.0.20",
"sql.js": "^1.14.0",
"supertest": "^6.3.3"
}
}