-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "jazzb-sms-api",
"version": "1.0.0",
"description": "A robust, scalable Express.js API that serves as a unified gateway for sending and receiving SMS messages through multiple service providers. This API abstracts away the complexities of different SMS provider integrations, offering a consistent interface while maintaining the flexibility to switch between providers seamlessly.",
"main": "src/server.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"lint": "eslint src/",
"debug": "node --inspect src/server.js"
},
"keywords": [
"sms",
"api",
"express",
"messaging"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.8.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}