-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
49
50
51
52
{
"name": "sms-server-template",
"description": "SMS Server Template is a generic open-source sms server that has a simple yet powerful design to connect your business with third-party sms service providers (like Twilio, Amazon SNS).",
"version": "5.0.1",
"license": "MIT",
"main": "sms-server.main.ts",
"scripts": {
"start": "ts-node sms-server.main.ts",
"startLocal": "nodemon --exec DEBUG=* ts-node sms-server.main.ts",
"outdated": "node dependency-checker.ts > docs/OUTDATED.md"
},
"dependencies": {
"@open-template-hub/common": "^5.0.10",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/uuid": "^9.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"mongoose": "^6.8.3",
"ts-node": "^10.9.1",
"twilio": "^3.84.0",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"git repository": "https://github.com/open-template-hub/sms-server-template",
"repository": {
"type": "git",
"url": "https://github.com/open-template-hub/sms-server-template.git"
},
"keywords": [
"sms",
"sms-server",
"sms-provider",
"download",
"upload",
"server",
"template",
"nodejs",
"typescript",
"mongodb",
"mongoose",
"aws",
"amazon-sns",
"twilio",
"open template hub"
]
}