-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "redline-ai",
"version": "1.0.0",
"description": "AI-powered IVR system for emergency dispatch with local speech recognition, intent classification, severity analysis, and responder routing",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"test": "jest --forceExit --detectOpenHandles",
"db:init": "node -e \"require('./src/db').initializeDatabase().then(() => { console.log('Done'); process.exit(0); })\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ananya-Ghosh05/Redline-AI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Ananya-Ghosh05/Redline-AI/issues"
},
"homepage": "https://github.com/Ananya-Ghosh05/Redline-AI#readme",
"dependencies": {
"@google-cloud/speech": "^7.2.1",
"@google-cloud/translate": "^9.3.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"pg": "^8.18.0",
"twilio": "^5.12.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"jest": "^30.2.0"
}
}