forked from TTG-Club/ttg-club-telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.21 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
{
"name": "ttg-club-tg-bot",
"description": "TTG Club Telegram bot",
"version": "1.0.0",
"author": "svifty7 <svifty7@gmail.com>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npm run clean && tsc --project tsconfig.json",
"clean": "rimraf dist/*",
"lint:check": "eslint --ignore-path .gitignore \"{**/*,*}.{cjs,js,ts,jsx,tsx}\"",
"lint:write": "eslint --fix --ignore-path .gitignore \"{**/*,*}.{cjs,js,ts,jsx,tsx}\"",
"prettier:check": "prettier . \"{**/*,*}.{cjs,js,ts,jsx,tsx}\" --ignore-path .gitignore --check",
"prettier:write": "prettier . \"{**/*,*}.{cjs,js,ts,jsx,tsx}\" --ignore-path .gitignore --write",
"pre-commit": "run-s lint:write prettier:write",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@grammyjs/auto-retry": "^1.1.1",
"@grammyjs/conversations": "^1.1.2",
"@grammyjs/parse-mode": "^1.8.1",
"@roziscoding/grammy-autoquote": "^1.1.2",
"axios": "^1.3.2",
"body-parser": "^1.20.1",
"dice-roller-parser": "^0.1.8",
"dotenv": "^16.0.3",
"grammy": "^1.19.2",
"jsdom": "^23.0.0",
"lodash-es": "^4.17.21",
"sanitize-html": "^2.11.0",
"turndown": "^7.1.2",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@grammyjs/hydrate": "^1.3.1",
"@grammyjs/types": "^3.3.0",
"@rushstack/eslint-patch": "^1.4.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsdom": "^21.1.6",
"@types/lodash-es": "^4.17.9",
"@types/node": "^18.13.0",
"@types/sanitize-html": "^2.9.5",
"@types/turndown": "^5.0.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"rimraf": "^4.1.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.9.0"
},
"imports": {
"@*": "./src/*"
}
}