-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 979 Bytes
/
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
{
"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": "browserify lib/main.js -o dist/main.js -d"
},
"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",
"@slate-editor/image-plugin": "^5.1.1",
"browserify": "^16.3.0",
"local-web-server": "^3.0.6",
"microphone-stream": "^5.0.1",
"query-string": "^6.8.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.2",
"babelify": "^10.0.0"
}
}