-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.38 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
{
"name": "ts-telegraf-boilerplate",
"version": "1.0.0",
"description": "A personal TypeScript-based boilerplate for Telegram bot development using Telegraf",
"main": "index.js",
"repository": "https://github.com/AlexMubarakshin/ts-telegraf-boilerplate",
"author": "Alex Mubarakshin",
"license": "MIT",
"scripts": {
"build": "tsc",
"eslint:lint": "eslint . --ext .ts",
"eslint:fix": "eslint . --ext .ts --fix",
"lint": "yarn prettier:check && yarn eslint:lint && yarn type-check",
"prettier:check": "npm exec prettier -- --check './src/**/*.{js,jsx,ts,tsx,scss,css}'",
"prettier:fix": "npm exec prettier -- --write './src/**/*.{js,jsx,ts,tsx}'",
"start": "node dist/index.js",
"start:inspect": "node --inspect dist/index.js",
"type-check": "tsc --noEmit --skipLibCheck",
"test": "jest"
},
"dependencies": {
"dotenv": "16.3.1",
"eslint-plugin-prettier": "5.0.0",
"telegraf": "4.14.0",
"winston": "3.10.0"
},
"devDependencies": {
"@babel/core": "7.23.0",
"@babel/preset-env": "7.22.20",
"@babel/preset-typescript": "7.23.0",
"@types/jest": "29.5.5",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"babel-jest": "29.7.0",
"eslint": "8.50.0",
"eslint-plugin-import-helpers": "1.3.1",
"jest": "29.7.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
}
}