-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "matrix-studrss",
"version": "1.1.0",
"description": "Ein Bot, der aus dem Studon RSS Feed liest und die Nachrichten in einen Matrix Chat schickt",
"main": "dist/src/index.js",
"scripts": {
"test": "eslint .",
"build": "tsc -p tsconfig.json",
"start": "node .",
"serve": "nodemon",
"serve:2": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neferin12/matrix-studrss-bot.git"
},
"keywords": [
"matrix",
"rss",
"bot",
"studon"
],
"author": "Julian Pollinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/neferin12/matrix-studrss-bot/issues"
},
"homepage": "https://github.com/neferin12/matrix-studrss-bot#readme",
"dependencies": {
"dotenv": "^8.6.0",
"matrix-bot-sdk": "^0.7.1",
"pg": "^8.11.5",
"reflect-metadata": "^0.2.2",
"rss-parser": "^3.13.0",
"simple-json-db": "^1.3.0",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}