-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "telegram-bot-starter",
"version": "1.0.0",
"description": "Telegram bot starter based on grammY",
"main": "dist/app.js",
"repository": "https://github.com/Borodutch/telegram-bot-template",
"author": "backmeupplz <[email protected]>",
"license": "MIT",
"scripts": {
"distribute": "yarn build-ts && node dist/app.js",
"develop": "tsc-watch --skipLibCheck --onSuccess 'node dist/app.js'",
"build-ts": "tsc --skipLibCheck",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src"
},
"dependencies": {
"@grammyjs/i18n": "^0.5.0",
"@grammyjs/menu": "^1.0.4",
"@grammyjs/runner": "^1.0.3",
"dotenv": "^10.0.0",
"envalid": "^7.2.2",
"grammy": "^1.5.0",
"grammy-middlewares": "^1.0.11",
"mongoose": "^6.1.0"
},
"devDependencies": {
"@typegoose/typegoose": "^9.3.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-no-relative-import-paths": "^1.0.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"module-alias": "^2.2.2",
"prettier": "^2.5.1",
"source-map-support": "^0.5.21",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.2"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]"
}