-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "clockify-telegram-bot",
"version": "1.3.3",
"description": "Telegram bot for clockify",
"author": "Lex Yudin @geexup",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nodemon -e .ts,.js --exec node --inspect -r ts-node/register ./src/index.ts",
"prod": "node ./dist/index.js",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@types/node": "12.0.7",
"@types/puppeteer": "1.12.4",
"husky": "2.4.1",
"ts-node": "8.2.0",
"tslint": "5.17.0",
"typescript": "3.5.1"
},
"repository": "https://github.com/geexup/clockify-telegram-bot.git",
"dependencies": {
"clockify-api": "1.1.0",
"dotenv": "8.0.0",
"handlebars": "4.1.2",
"http-proxy-agent": "2.1.0",
"https-proxy-agent": "2.2.1",
"moment": "2.24.0",
"pac-proxy-agent": "3.0.0",
"proxy-agent": "3.1.0",
"puppeteer": "1.17.0",
"socks-proxy-agent": "4.0.2",
"socks5-https-client": "1.2.1",
"telegraf": "3.30.1",
"telegraf-session-mongodb-fork": "1.2.0"
}
}