-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "telly-bot",
"description": "A Telegram bot based on Bun.",
"version": "0.1.0",
"private": true,
"author": "LolipopJ",
"license": "MIT",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "NODE_ENV=development bun --watch run src/index.ts",
"server": "NODE_ENV=production bun run src/index.ts",
"lint": "eslint .",
"lint:fix": "bun run lint --fix",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/html": "^1.1.0",
"axios": "^1.7.4",
"consola": "^3.2.3",
"elysia": "^1.1.6",
"lodash-es": "^4.17.21",
"mongoose": "^8.5.3",
"node-schedule": "^2.1.1",
"node-telegram-bot-api": "^0.66.0",
"octokit": "^4.0.2"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@kitajs/ts-html-plugin": "^4.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bun": "^1.1.6",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"@types/node-schedule": "^2.1.7",
"@types/node-telegram-bot-api": "^0.64.7",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"typescript-eslint": "^8.1.0",
"typescript": "^5.5.4"
}
}