forked from HAWHHCalendarBot/TelegramBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"version": "9.2.1",
"private": true,
"license": "AGPLv3",
"repository": {
"type": "git",
"url": "https://github.com/HAWHHCalendarBot/telegrambot.git"
},
"scripts": {
"start": "tsc --sourceMap && node --enable-source-maps dist/index.js",
"test": "tsc --sourceMap && xo && ava"
},
"type": "module",
"engines": {
"node": ">=18"
},
"dependencies": {
"@grammyjs/i18n": "^1.0.1",
"@grammyjs/stateless-question": "^3.0.0",
"array-filter-unique": "^3.0.0",
"grammy": "^1.10.1",
"grammy-inline-menu": "^8.0.0",
"json-stable-stringify": "^1.0.1",
"telegraf-middleware-console-time": "^2.0.0",
"telegram-format": "^2.0.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/node": "^18.6.3",
"ava": "^5.0.1",
"typescript": "^4.2.3",
"xo": "^0.53.0"
},
"xo": {
"semicolon": false,
"rules": {
"@typescript-eslint/naming-convention": "off",
"ava/no-ignored-test-files": "off",
"n/prefer-global/process": "off"
}
}
}