-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "visa-checker",
"version": "1.0.1",
"description": "Schengen vizesi randevularını otomatik takip eden ve Telegram üzerinden bildirim gönderen bot",
"author": {
"name": "byigitt",
"email": "bbayburtlu@hotmail.com",
"url": "https://github.com/byigitt"
},
"homepage": "https://github.com/byigitt/visa-checker",
"repository": {
"type": "git",
"url": "https://github.com/byigitt/visa-checker.git"
},
"bugs": {
"url": "https://github.com/byigitt/visa-checker/issues",
"email": "bbayburtlu@hotmail.com"
},
"keywords": [
"schengen",
"vize",
"randevu",
"telegram",
"bot",
"takip",
"bildirim"
],
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node --no-deprecation dist/index.js",
"dev": "node --no-deprecation -r ts-node/register src/index.ts",
"lint": "eslint . --ext .ts",
"test": "jest",
"clean": "rimraf dist",
"prepare": "npm run build"
},
"dependencies": {
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3",
"telegraf": "^4.15.3"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@types/node-cron": "^3.0.11",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=16.0.0"
}
}