-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 910 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 910 Bytes
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": "simple-question-complex-answer",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Telegram bot built with Node.js",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/boolfalse/simple-question-complex-answer.git"
},
"keywords": [
"node",
"telegram"
],
"author": "boolfalse",
"license": "ISC",
"bugs": {
"url": "https://github.com/boolfalse/simple-question-complex-answer/issues"
},
"homepage": "https://github.com/boolfalse/simple-question-complex-answer#readme",
"devDependencies": {
"nodemon": "^2.0.22"
},
"dependencies": {
"aws-sdk": "^2.1378.0",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"fluent-ffmpeg": "^2.1.2",
"mongoose": "^7.1.1",
"telegraf": "^4.12.2"
}
}