-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "feedwidget",
"version": "1.0.0",
"description": "Feed Widget on using create-react-app with a Node Express Backend",
"license": "MIT",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node index.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"build": "cd client && yarn start",
"start:prod": "NODE_ENV=production node index.js",
"start:production": "npm run build && npm run start:prod"
},
"dependencies": {
"body-parser": "^1.19.0",
"child_process": "^1.0.2",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"domino": "^2.1.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"feed": "^4.0.0",
"got": "^9.6.0",
"metascraper": "^5.7.6",
"metascraper-author": "^5.7.6",
"metascraper-clearbit": "^5.7.6",
"metascraper-date": "^5.7.6",
"metascraper-description": "^5.7.6",
"metascraper-image": "^5.7.6",
"metascraper-logo": "^5.7.6",
"metascraper-publisher": "^5.7.6",
"metascraper-title": "^5.7.6",
"metascraper-url": "^5.7.6",
"mysql2": "^2.0.1",
"node-fetch": "^2.6.0",
"page-metadata-parser": "^1.1.4",
"rss": "^1.2.2",
"rss-parser": "^3.7.2",
"sequelize": "^5.21.2"
},
"proxy": "http://localhost:5000",
"devDependencies": {},
"keywords": [
"node",
"express",
"create-react-app"
]
}