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
29 lines (29 loc) · 794 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 794 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
{
"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",
"test": "jest",
"test:memo": "node test-memo-feature.js",
"test:rate-limit": "node test-rate-limit.js",
"dev": "nodemon src/routes/app.js",
"lint": "eslint ."
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"sqlite3": "^5.1.7",
"stellar-sdk": "^11.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3"
}
}