forked from eduhund/taskbook-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 872 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
38
{
"name": "chacha",
"version": "3.0.0",
"description": "Support assistant platform",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest --verbose --setupFiles dotenv/config"
},
"author": "Roman Nebel",
"license": "ISC",
"dependencies": {
"@log4js-node/slack": "^1.0.0",
"@slack/bolt": "^3.12.2",
"@slack/web-api": "^6.8.1",
"cron": "^2.2.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"log4js": "^6.8.0",
"module-alias": "^2.2.2",
"mongodb": "^5.1.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.9",
"telegraf": "^4.11.2"
},
"_moduleAliases": {
"@tg": "src/services/telegram",
"@sl": "src/services/slack",
"@mg": "src/services/database",
"@ex": "src/services/express",
"@processes": "src/processes",
"@utils": "src/utils",
"@assets": "src/assets"
},
"devDependencies": {
"jest": "^29.5.0"
}
}