-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.56 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
58
{
"name": "text-to-speech-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-api": "NODE_ENV=production tsc && node ./dist/api/api.js",
"start-bot": "NODE_ENV=production tsc && node ./dist/bot/bot.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@grammyjs/auto-retry": "^1.1.1",
"@grammyjs/hydrate": "^1.3.1",
"@grammyjs/i18n": "^1.0.1",
"@grammyjs/menu": "^1.1.3",
"@grammyjs/parse-mode": "^1.6.0",
"@grammyjs/ratelimiter": "^1.1.6",
"@grammyjs/router": "^2.0.0",
"@grammyjs/runner": "^1.0.4",
"@grammyjs/transformer-throttler": "^1.2.1",
"@prisma/client": "^4.11.0",
"axios": "^1.3.4",
"chart.js": "^3.9.1",
"chartjs-node-canvas": "^4.1.6",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"escape-string-regexp": "^5.0.0",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"glob": "^9.2.1",
"grammy": "^1.14.1",
"gtts": "^0.2.1",
"kiss-ffmpeg": "^0.4.2",
"morgan": "^1.10.0",
"multistream": "^4.1.0",
"nanoid": "^4.0.1",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"underscore": "^1.13.6"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/multistream": "^4.1.0",
"@types/node": "^18.14.6",
"@types/underscore": "^1.11.4",
"nodemon": "^2.0.21",
"prisma": "^4.11.0",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
}
}