-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 866 Bytes
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
{
"name": "ghost-reader-server",
"version": "1.0.0",
"description": "A barebones Node.js based RSS server for full-text article parsing using diffbot.",
"main": "dist/server.js",
"scripts": {
"lint": "eslint .",
"build": "tsc -p tsconfig.json",
"start": "pm2-runtime start ecosystem.config.js --env production"
},
"repository": "https://github.com/Ghost-Reader-App/ghost-reader-server",
"author": "Sayem Chowdhury",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"axios-rate-limit": "^1.3.0",
"fastify": "^3.14.1",
"fastify-socket.io": "^1.0.2",
"ioredis": "^4.24.6",
"pm2": "^4.5.5"
},
"devDependencies": {
"@types/ioredis": "^4.22.2",
"@types/node": "^14.14.37",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}