-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1001 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
34
35
36
37
38
39
40
41
42
{
"name": "mega-sena-results",
"version": "0.0.0",
"description": "the latest mega sena results",
"repository": {
"type": "git",
"url": "git+https://github.com/tcelestino/mega-sena-results.git"
},
"author": "Tiago Celestino",
"license": "MIT",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"scripts": {
"dev": "nodemon src/*.js",
"lint": "eslint src --ext .js --max-warnings 3",
"start": "npm run scraping && npm run send",
"scraping": "node src/index.js",
"send": "node src/send.js"
},
"devDependencies": {
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"lint-staged": "15.2.10",
"nodemon": "3.1.4",
"prettier": "3.3.3"
},
"lint-staged": {
"*.{js}": [
"yarn lint"
]
},
"dependencies": {
"dotenv": "16.4.5",
"nodemailer": "6.9.15",
"puppeteer": "23.3.0"
}
}