-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "rss-feed-generator",
"version": "1.0.0",
"description": "generate an rss feed from local or remote sources and feed a generated xml document to podcast players",
"main": "dist/app.js",
"scripts": {
"start": "node dist/server.js",
"start-dev": "tsc && node dist/server.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"jest": "^30.0.5",
"supertest": "^7.1.4",
"ts-jest": "^29.4.1",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^30.0.0",
"@types/rss": "^0.0.32",
"cron": "^4.3.3",
"dotenv": "^17.2.1",
"express": "^4.17.1",
"ffmetadata": "^1.7.0",
"music-metadata": "^11.8.3",
"path": "^0.12.7",
"rss": "^1.2.2",
"sanitize-filename-ts": "^1.0.2",
"sharp": "^0.34.4",
"typescript": "5.8.3"
}
}