-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 840 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
{
"name": "translink-bot",
"version": "1.0.0",
"description": "",
"engines": {
"node": "20.16.0"
},
"main": "dist/app.js",
"scripts": {
"postinstall": "tsc",
"start": "node dist/app.js",
"prettier": "prettier --write ."
},
"author": "Khang Le",
"license": "ISC",
"dependencies": {
"@types/lodash": "^4.17.13",
"axios": "^1.7.7",
"dotenv": "^16.0.3",
"haversine-distance": "^1.2.3",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.46",
"telegraf": "^4.16.3",
"translink-bot": "file:"
},
"devDependencies": {
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
}
}