-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 934 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
{
"name": "shopping-web-scraper-backend",
"version": "2.0.0",
"description": "Shopping web scraper backend",
"main": "src/index.js",
"scripts": {
"start": "set DEBUG=app*,firebase* && node -r dotenv/config src/index.js",
"dev": "set DEBUG=app*,firebase* && nodemon -r dotenv/config src/index.js",
"cron": "set DEBUG=app*,firebase* && node src/Cron/watchersCron.js"
},
"author": "jscalderon65",
"license": "ISC",
"homepage": "https://github.com/jscalderon65/Shopping-web-scraper",
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"axios": "^0.26.1",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"firebase-admin": "^10.0.2",
"jsdom": "^19.0.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"nodemon": "^2.0.15",
"npm-check-updates": "^12.5.3",
"puppeteer": "^13.5.1",
"uuid": "^8.3.2"
}
}