forked from marcomoauro/substack-summarizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
48
49
50
51
{
"name": "substack-summarizer",
"version": "1.0.0",
"description": "Substack articles summarizer implementation for Node.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"serve:development": "nodemon --env-file=.env src/index.js",
"serve:production": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcomoauro/substack-summarizer.git"
},
"keywords": [
"substack",
"summarizer",
"node.js",
"newsletter",
"articles"
],
"author": "Marco Moauro <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcomoauro/substack-summarizer/issues"
},
"homepage": "https://github.com/marcomoauro/substack-summarizer#readme",
"dependencies": {
"@koa/cors": "5.0.0",
"@koa/router": "12.0.1",
"axios": "1.6.8",
"jsonwebtoken": "9.0.2",
"koa": "2.15.3",
"koa-better-json": "2.5.0",
"koa-better-log": "1.0.5",
"koa-body": "6.0.1",
"lodash": "4.17.21",
"luxon": "^3.4.4",
"memoizee": "0.4.15",
"nano-id": "1.1.0",
"nodemailer": "6.9.13",
"p-queue": "8.0.1",
"pg-monitor": "2.1.0",
"pg-promise": "11.6.0"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}