-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 KB
/
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
43
44
{
"name": "sg-lottery-scraper",
"version": "3.1.1",
"exports": "./index.js",
"license": "MIT",
"author": "Amos Tan <[email protected]>",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.11",
"@types/node-fetch": "^3.0.3",
"@types/puppeteer": "^5.4.4",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@sentry/node": "^6.16.1",
"dotenv": "^10.0.0",
"firebase-admin": "^10.0.0",
"lodash": "^4.17.21",
"node-fetch": "^3.1.0",
"puppeteer": "^11.0.0"
},
"scripts": {
"start": "node dist/scrape.js",
"firebase": "node dist/sendFirebase.js",
"dev:scrape": "ts-node src/scrape.ts",
"dev:firebase": "ts-node src/sendFirebase.ts",
"build": "rm -Rf dist/ && tsc -outDir dist",
"clean": "rm -Rf dist/ && rm -Rf temp/ && rm -rf output/"
},
"engines": {
"node": ">=18.0.0"
}
}