-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 875 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
{
"name": "mongoose-cheerio-scraper",
"version": "1.0.0",
"description": "news scraping app",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vincent440/mongoose-cheerio-scraper.git"
},
"author": "Vincent S Shury",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vincent440/mongoose-cheerio-scraper/issues"
},
"homepage": "https://github.com/Vincent440/mongoose-cheerio-scraper#readme",
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"mongoose": "^7.4.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^3.0.1",
"standard": "^17.1.0"
}
}