-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "web-client-ts",
"version": "1.0.0",
"description": "A real-time web application for managing SMS communications based on the SMS Gateway for Android™.",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"typescript",
"real-time",
"sms",
"communication",
"nodejs",
"messaging"
],
"author": {
"name": "Aleksandr Soloshenko",
"email": "[email protected]",
"url": "https://github.com/capcom6"
},
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-session": "^1.18.0",
"morgan": "^1.10.0",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.6",
"nodemon": "^3.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}