This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "website-changed-bot",
"private": true,
"version": "0.12.5",
"description": "This Telegram Bot can notify you on changed website source",
"license": "MIT",
"repository": "EdJoPaTo/website-changed-bot",
"author": {
"name": "EdJoPaTo",
"email": "website-changed-bot@edjopato.de",
"url": "https://edjopato.de"
},
"scripts": {
"build": "del-cli dist && tsc",
"start": "node --loader ts-node/esm source/index.ts",
"test": "tsc --sourceMap && xo && ava"
},
"type": "module",
"engines": {
"node": ">=16"
},
"dependencies": {
"@edjopato/datastore": "^0.4.0",
"@grammyjs/stateless-question": "^3.0.0",
"array-filter-unique": "^2.2.0",
"array-reduce-group-by": "^1.0.0",
"got": "^12.0.0",
"grammy": "^1.3.4",
"grammy-inline-menu": "^7.0.1",
"js-beautify": "^1.10.0",
"json-stable-stringify": "^1.0.1",
"source-map-support": "^0.5.19",
"telegraf-middleware-console-time": "^2.0.0",
"telegram-format": "^2.0.0"
},
"devDependencies": {
"@grammyjs/types": "^2.2.6",
"@sindresorhus/tsconfig": "^2.0.0",
"@types/js-beautify": "^1.8.2",
"@types/json-stable-stringify": "^1.0.32",
"@types/node": "^16.3.1",
"ava": "^3.8.1",
"del-cli": "^4.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.2",
"xo": "^0.47.0"
},
"xo": {
"semicolon": false,
"rules": {
"@typescript-eslint/naming-convention": "off",
"ava/no-ignored-test-files": "off",
"node/prefer-global/process": "off",
"unicorn/prefer-node-protocol": "off",
"import/extensions": [
"error",
"ignorePackages"
]
}
}
}