-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 KB
/
package.json
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
{
"name": "sms_server",
"version": "2.0.1",
"description": "SMS server to send text/flash messages from your apps to recipients's phone number with the help of server with connected GSM modem.",
"main": "./src/app.js",
"scripts": {
"start": "node ./src/app.js"
},
"type": "module",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.1",
"express": "^4.18.2",
"pino": "^8.18.0",
"serialport-gsm": "^4.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"pino-pretty": "^10.3.1"
},
"engines": {
"node": ">=12.0.0"
},
"author": "Yunus Ashyrov <contact@yunus-mil.ru> (https://github.com/yunusmi)",
"repository": {
"type": "git",
"url": "https://github.com/yunusmi/sms_server.git"
},
"bugs": {
"url": "https://github.com/yunusmi/sms_server/issues"
},
"homepage": "https://github.com/yunusmi/sms_server#readme",
"keywords": [
"sms message",
"sms server",
"flash message",
"send sms",
"gsm",
"at",
"sms",
"modem",
"serial port",
"serialport",
"serial",
"com",
"port"
]
}