-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 988 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
{
"name": "hn-kindle",
"version": "0.0.1",
"description": "Create an ebook of the day's Hacker News articles and send it to your Kindle",
"main": "index.mjs",
"repository": "git@github.com:sprusr/hn-kindle.git",
"author": "sprusr <scott@spru.sr>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node --experimental-modules .",
"dev": "nodemon --experimental-modules",
"now": "node --experimental-modules . --now"
},
"devDependencies": {
"nodemon": "^1.17.4"
},
"dependencies": {
"@sendgrid/mail": "^6.2.1",
"dotenv": "^5.0.1",
"epub-gen": "https://github.com/sprusr/epub-gen.git",
"jsdom": "^11.10.0",
"kindlegen": "^1.1.0",
"koa": "^2.5.1",
"koa-glitch-keepalive": "^1.1.0",
"koa-static": "^4.0.2",
"mime": "^2.3.1",
"minimist": "^1.2.0",
"moment": "^2.22.1",
"node-hn-api": "^1.1.0",
"node-schedule": "^1.3.0",
"readability": "https://github.com/mozilla/readability.git"
}
}