-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tg-hketa",
"version": "2.5.1",
"engines": {
"node": "16.x"
},
"description": "A telegram bot to get the ETA of HK public transport.",
"main": "dist/src/app.js",
"scripts": {
"start": "NODE_ENV=production node -r source-map-support/register --trace-warnings dist/src/app.js",
"dev": "NODE_ENV=development ts-node-dev --respawn -r tsconfig-paths/register",
"dev:app": "npm run dev src/app.ts",
"build": "npm run update:route && rm -rf dist && tsc && cp -r data dist/",
"test": "jest",
"test:watch": "jest --watch",
"update:route": "ts-node src/services/routes.ts",
"set:webhook": "curl -F \"url=https://$URL/message\" https://api.telegram.org/bot$TOKEN/setWebhook",
"prepare": "husky install"
},
"keywords": [
"nodejs",
"telegram",
"bot"
],
"author": "Kiros Choi",
"license": "GPL-3.0-or-later",
"dependencies": {
"@sentry/node": "^6.19.6",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/luxon": "^2.3.1",
"axios": "^0.26.1",
"axios-cache-adapter": "^2.7.3",
"cron": "^1.8.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"knex": "^1.0.7",
"lodash": "^4.17.21",
"luxon": "^2.3.1",
"module-alias": "^2.2.2",
"moize": "^6.1.0",
"node-fetch": "^3.2.3",
"source-map-support": "^0.5.21",
"telegraf": "^4.7.0",
"telegraf-inline-menu": "^6.3.0",
"telegraf-stateless-question": "^2.0.1",
"typescript": "^4.6.3",
"universal-analytics": "^0.5.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/cron": "^1.7.3",
"@types/crypto-js": "^4.1.1",
"@types/universal-analytics": "^0.4.5",
"@types/xml2js": "^0.4.9",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"sqlite3": "^5.0.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.1"
},
"lint-staged": {
"*.{ts,md}": "prettier --write"
}
}