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
57 lines (57 loc) · 1.94 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.94 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
56
57
{
"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:e2e": "jest --config jest.config.e2e.js",
"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",
"test:load": "node tests/load/run-load-tests.js",
"test:load:jest": "jest tests/implement-load-testing-suite.test.js --testTimeout=60000 --forceExit"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"dotenv": "^17.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.3.1",
"graphql": "^16.13.2",
"graphql-http": "^1.22.4",
"graphql-ws": "^6.0.7",
"helmet": "^8.1.0",
"nodemailer": "^8.0.3",
"pdfkit": "^0.18.0",
"prom-client": "^15.1.3",
"qrcode": "^1.5.4",
"sqlite3": "^6.0.1",
"stellar-sdk": "^11.0.0",
"uuid": "^9.0.1",
"ws": "^8.20.0"
},
"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": "^3.1.14",
"sql.js": "^1.14.0",
"supertest": "^6.3.3"
}
}