-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 KB
/
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
{
"name": "yandex-speechkit-talk-recognition",
"version": "3.0.0",
"description": "Распознавание больших файлов разговоров через Yandex SpeechKit",
"main": "index.js",
"scripts": {
"start": "node index.js",
"nodemon": "nodemon --ignore data server.js",
"dev": "cross-env DATA_DIR=./data/yandex-stt nodemon --ignore data server.js",
"server": "node server.js",
"convert-to-ogg": "node convert-to-ogg.js",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push && npm run release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "conventional-github-releaser -p angular && npm publish"
},
"author": "Stanislav Popov",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.884.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"commander": "^7.2.0",
"connect-busboy": "0.0.2",
"express": "^4.17.1",
"ffmpeg": "0.0.4",
"form-data": "^4.0.0",
"fs-extra": "^9.1.0",
"lowdb": "^3.0.0",
"nodemon": "^2.0.16",
"telegraf": "^4.12.2"
},
"bin": {
"yandex-stt": "index.js"
}
}