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
|
{
"name": "twilio-realtime",
"version": "1.0.0",
"description": "Twilio real-time server with TypeScript",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --watch 'src/**/*' --watch '.env' --ext 'ts,js,xml,env' --exec 'ts-node' src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.5.12",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"httpdispatcher": "^2.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^5.0.0",
"nodemon": "^2.0.22"
}
}
|