-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
57 lines (57 loc) · 1.69 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "voicy",
"version": "1.0.0",
"description": "Text to speech Telegram bot",
"main": "dist/app.js",
"private": false,
"license": "MIT",
"author": "backmeupplz <[email protected]>",
"scripts": {
"distribute": "node dist/app.js",
"develop": "concurrently -k -i -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/app.js",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src"
},
"dependencies": {
"@google-cloud/speech": "^4.9.0",
"@google-cloud/storage": "^5.15.3",
"@grammyjs/i18n": "^0.3.0",
"@grammyjs/runner": "^1.0.2",
"@typegoose/typegoose": "^9.2.0",
"axios": "^0.23.0",
"crypto-js": "^4.1.1",
"download": "^8.0.0",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"grammy": "^1.3.4",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mongoose": "6.0.12",
"mongoose-findorcreate": "^3.0.0",
"stripe": "^10.15.0",
"temp": "^0.9.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^16.11.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"concurrently": "^6.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"module-alias": "^2.2.2",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"_moduleAliases": {
"@": "dist"
}
}