-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
{
"name": "p2pvideoeditorbot",
"version": "1.0.0",
"description": "The bot will connect you with a video editor and allow you to create a video together. Just answer the bot's questions, make an advance payment, send your materials and you will receive the finished video on time.",
"main": "bot.js",
"type": "module",
"scripts": {
"start": "node --es-module-specifier-resolution=node build/app.js",
"clean": "rm -rf ./build/",
"dev": "npm run clean && DEBUG='grammy*' ./node_modules/.bin/tsc-watch --onSuccess \"node --es-module-specifier-resolution=node build/app.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/devandtravel/p2pVideoEditorBot.git"
},
"keywords": [
"telegram",
"bot",
"nodejs",
"grammy"
],
"author": "devandtravel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devandtravel/p2pVideoEditorBot/issues"
},
"homepage": "https://github.com/devandtravel/p2pVideoEditorBot#readme",
"devDependencies": {
"@types/uuid": "^8.3.3",
"tsc-watch": "^4.6.0",
"typescript": "^4.6.0-dev.20211222"
},
"dependencies": {
"@google-cloud/firestore": "^5.0.1",
"@grammyjs/files": "^1.0.2",
"@grammyjs/menu": "^1.0.4",
"@grammyjs/runner": "^1.0.3",
"@grammyjs/stateless-question": "^3.0.1",
"@grammyjs/storage-firestore": "^1.0.2",
"dotenv": "^10.0.0",
"grammy": "^1.5.4",
"telegraf-middleware-console-time": "^2.1.0",
"uuid": "^8.3.2"
}
}