-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 928 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": "web_scraper",
"version": "1.0.0",
"description": " A web scraper to notify the user when changes in the Linux kernel version appear",
"main": "app.js",
"scripts": {
"start": "./node_modules/nodemon/bin/nodemon.js src/app.js --exec 'npm run lint && node'",
"lint": "./node_modules/.bin/eslint ./src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Nico Greve",
"license": "ISC",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"nodemon": "^3.1.0"
},
"dependencies": {
"cheerio": "0.22.0",
"express": "4.19.2",
"express-mailer": "0.3.1",
"nodemailer": "6.9.13",
"request": "2.88.2",
"request-promise": "4.2.6",
"sendmail": "1.6.1"
}
}