-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "newsfront",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon BackEnd/server.js",
"client": "npm start --prefix FrontEnd",
"client:build": "npm run build --prefix FrontEnd",
"start:dev": "concurrently \"npm run server\" \"npm run client\"",
"article:import": "node ./BackEnd/util/fetchArticles.js --import-articles",
"headlines:import": "node ./BackEnd/util/fetchArticles.js --import-head",
"import-all": "node ./BackEnd/util/fetchArticles.js --import-all",
"cleanup": "node ./BackEnd/util/fetchArticles.js --cleanup "
},
"author": "Mohamed El-Esnawy",
"license": "ISC",
"dependencies": {
"after-load": "^1.0.4",
"axios": "^0.21.1",
"chalk": "^3.0.0",
"concurrently": "^6.2.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eventregistry": "^8.9.2",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"getdomain": "^1.3.1",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"mongoose": "^5.13.7",
"morgan": "^1.10.0",
"ndb": "^1.1.5",
"newsapi": "^2.4.1",
"node-html-parser": "^4.1.3",
"node-request-promise": "^1.0.1",
"nodemon": "^2.0.9",
"number-to-date-month-name": "^1.0.2",
"rss-parser": "^3.12.0",
"sanitize-html": "^2.4.0",
"valid-url": "^1.0.9",
"website-logo": "^2.0.0",
"xss-clean": "^0.1.1"
}
}