-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "voicealarmsystem",
"version": "1.0",
"description": "Client server-based voice alarm system for enterprises",
"main": "Build/App.js",
"scripts": {
"build": "tsc -build && xcopy /E /I \"./Source/SFX\" \"./Build/SFX\"",
"server": "node \"./Build/App.js\" --which server",
"client": "node \"./Build/App.js\" --which client",
"monitor": "node \"./Build/App.js\" --which monitor",
"server_pm2": "pm2 start ecosystem.config.js --only server",
"client_pm2": "pm2 start ecosystem.config.js --only client"
},
"keywords": [
"socket",
"socket.io",
"recorder",
"speaker",
"server",
"client",
"voice",
"notification",
"voice-notification"
],
"author": "joyrax, JumpManiack88",
"license": "BSD-2-Clause",
"dependencies": {
"blessed": "^0.1.81",
"commander": "^11.1.0",
"data-store": "^3.1.0",
"log4js": "^6.9.1",
"node-global-key-listener": "^0.1.1",
"node-record-lpcm16": "^1.0.1",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"speaker": "^0.5.4"
},
"devDependencies": {
"@types/node": "^20.8.7"
}
}