-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "rss-to-telegram",
"version": "1.1.0",
"description": "Fetch notifications from the RSS url and send them to telegram.",
"main": "startup.js",
"scripts": {
"build": "rimraf build && tsc --p tsconfig.release.json",
"start": "node ./build/startup.js",
"dev": "env-cmd -f ./.env.dev.local nodemon --exec ts-node ./src/startup.ts",
"lint": "eslint src tests --fix --ext .js,.ts",
"test": "env-cmd -f ./.env.test jest"
},
"author": "Ricardo Teixeira <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ricardotx/RssToTelegram.git"
},
"dependencies": {
"dayjs": "^1.10.4",
"rss-parser": "^3.11.0",
"telegraf": "^4.0.3",
"turndown": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/turndown": "^5.0.0",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"env-cmd": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}