-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.41 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "espi",
"version": "3.7.0",
"description": "Unfriendly Bot for Telegram",
"author": "Leandro Di Lorenzo <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/12-cactus/espi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/12-cactus/espi.git"
},
"bugs": {
"url": "https://github.com/12-cactus/espi/issues"
},
"main": "src/index.ts",
"engines": {
"node": "20.10.0"
},
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"dev": "sh .scripts/start-dev.sh",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --ext .ts ./",
"release": "dotenv release-it",
"tunnel": "sh .scripts/start-tunnel.sh",
"prepare": "if [ \"$NODE_ENV\" != production ]; then husky install; fi"
},
"volta": {
"node": "20.10.0",
"yarn": "1.22.22"
},
"dependencies": {
"axios": "^1.6.4",
"cron": "^3.1.6",
"date-fns": "^3.0.6",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"openai": "4.24.1",
"telegraf": "^4.15.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@jest/globals": "29.7.0",
"@types/cron": "^2.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "15.2.0",
"nock": "13.4.0",
"nodemon": "3.0.2",
"prettier": "3.1.1",
"release-it": "^17.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{ts,json,md}": "prettier --write",
"*.{ts}": "eslint"
},
"release-it": {
"hooks": {
"before:init": [
"npx prettier --check .",
"yarn lint"
]
},
"git": {
"commitMessage": "🔖 v${version}"
},
"github": {
"release": true,
"releaseName": "Release ${version}"
},
"npm": {
"publish": false
}
},
"keywords": [
"espinoso",
"telegram",
"bot"
]
}