-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
42
43
44
45
46
47
{
"name": "amazon-transcribe-websocket-static",
"description": "A static site demonstrating real-time audio transcription via Amazon Transcribe over a WebSocket.",
"version": "1.0.0",
"author": {
"name": "Amazon Web Services",
"email": "",
"url": "http://aws.amazon.com/"
},
"scripts": {
"build": "node build.js"
},
"keywords": [],
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/env"
]
}
]
]
},
"dependencies": {
"@aws-sdk/eventstream-marshaller": "0.1.0-preview.2",
"@aws-sdk/util-utf8-node": "0.1.0-preview.1",
"aws-sdk": "^2.556.0",
"brace": "^0.11.1",
"browserify": "^16.3.0",
"browserify-fs": "^1.0.0",
"child_process": "^1.0.2",
"local-web-server": "^3.0.6",
"microphone-stream": "^5.0.1",
"python-shell": "^1.0.8",
"query-string": "^6.8.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.2",
"babelify": "^10.0.0",
"dotenv": "^8.2.0",
"envify": "^4.1.0",
"fs": "0.0.1-security"
}
}