-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 887 Bytes
/
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
{
"name": "rss2json-proxy",
"version": "0.0.1",
"private": true,
"description": "Proxy that converts RSS to JSON",
"main": "server.js",
"scripts": {
"start": "tsc && node build/server.js",
"build": "tsc"
},
"dependencies": {
"@fastify/compress": "^7.0.3",
"@fastify/cors": "^9.0.1",
"dotenv": "^16.4.7",
"fastify": "^4.29.0",
"typescript": "^5.6.3",
"undici": "^5.28.5",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=16"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
],
"devDependencies": {
"@eslint/js": "^9.20.0",
"@tsconfig/node16": "^16.1.3",
"@types/node": "^22.13.2",
"@types/xml2js": "^0.4.14",
"eslint": "^8.57.1",
"globals": "^15.15.0",
"typescript-eslint": "^8.24.0"
}
}