-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 969 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
39
40
41
42
43
{
"name": "quality-bot",
"version": "1.0.0",
"description": "A health-check bot for the quality of services.",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p ."
},
"nodemonConfig": {
"ignore": [
"sessions.json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Just-Hussain/quality-bot.git"
},
"author": "Hussain",
"license": "ISC",
"bugs": {
"url": "https://github.com/Just-Hussain/quality-bot/issues"
},
"homepage": "https://github.com/Just-Hussain/quality-bot#readme",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"i18n": "^0.13.2",
"telegraf": "^4.3.0",
"telegraf-session-local": "^2.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/i18n": "^0.13.0",
"@types/node": "^14.14.35",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}