-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 933 Bytes
/
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": "bbot",
"version": "1.0.0",
"description": "Born to help both developers and testers during apps beta testing.",
"author": "Luca Biagetti",
"license": "GPL-3.0",
"main": "bbot.js",
"scripts": {
"start": "node ./bbot.js",
"format-code": "npx prettier --write ."
},
"homepage": "https://github.com/isladot/sf-app-support-bot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/isladot/sf-app-support-bot.git"
},
"bugs": {
"url": "https://github.com/isladot/sf-app-support-bot/issues"
},
"dependencies": {
"dotenv": "^8.6.0",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.1",
"telegraf": "^4.3.0"
},
"devDependencies": {
"prettier": "^2.3.0"
},
"_moduleAliases": {
"@root": ".",
"@commands": "./commands",
"@actions": "./actions",
"@utils": "./utils",
"@clients": "./clients",
"@loaders": "./loaders"
}
}