forked from ravgeetdhillon/notion-feeder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
52
53
54
55
56
{
"name": "notion-feed-reader",
"version": "1.0.0",
"private": true,
"description": "A Node app for creating a Feed Reader in Notion.",
"keywords": [
"notion",
"notion-api",
"notion-feed-reader",
"feed-reader",
"node",
"javascript"
],
"scripts": {
"develop": "webpack --watch",
"build": "webpack",
"build-prod": "webpack --env mode='production'",
"feed": "node dist/index.js"
},
"author": "Ravgeet Dhillon <ravgeetdhillon@gmail.com>",
"license": "MIT",
"dependencies": {
"@notionhq/client": "^0.4.9",
"@tryfabric/martian": "^1.1.1",
"dotenv": "^10.0.0",
"rss-parser": "^3.12.0",
"turndown": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.4",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.1",
"prettier": "^2.6.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"engines": {
"node": ">=10.16.0 <=14.x.x",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ravgeetdhillon/notion-feed-reader"
},
"bugs": {
"url": "https://github.com/ravgeetdhillon/notion-feed-reader/issues"
},
"homepage": "https://github.com/ravgeetdhillon/notion-feed-reader"
}