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
27 lines (27 loc) · 708 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 708 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
{
"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",
"dev": "nodemon src/routes/app.js",
"lint": "eslint .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:ci": "jest --coverage --ci --maxWorkers=2"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"sqlite3": "^6.0.1",
"stellar-sdk": "^11.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^30.3.0",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
}
}