-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "telegram-node",
"version": "2.1.2",
"license": "GPL-3.0",
"description": "Node.js Telegram bot boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/jesusgn90/telegram-node/"
},
"author": "Jesús Ángel González Novez",
"scripts": {
"lint": "eslint -c .eslintrc.js src/**/*.ts src/*.ts tests/**/*.ts",
"prebuild": "yarn lint",
"build": "rimraf ./dist && tsc",
"prestart": "yarn build",
"start": "node dist/index.js",
"test:unit": "jest tests",
"test:unit:ci": "jest tests --ci --runInBand"
},
"dependencies": {
"dotenv": "^8.2.0",
"telebot": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/telebot": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^7.3.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-eslint-plugin": "^2.2.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"jest": "^26.0.1",
"rimraf": "^3.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}