-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 747 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 747 Bytes
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
{
"name": "newssense",
"version": "1.0.0",
"description": "A news aggregation and analysis platform for financial markets",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"dev": "nodemon backend/server.js",
"test": "jest"
},
"dependencies": {
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"mongoose": "^8.1.3",
"node-cron": "^3.0.3",
"winston": "^3.11.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.3"
},
"engines": {
"node": ">=18.0.0"
},
"author": "",
"license": "ISC"
}