-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "scrape-cli",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"cli": "tsc && node dist/cli.js",
"web": "tsc && node dist/web.js",
"web-dev": "nodemon -e ts --exec \"yarn web\""
},
"bin": {
"scrape": "dist/cli.js"
},
"dependencies": {
"@supabase/supabase-js": "^1.29.1",
"axios": "1.6.0",
"chalk": "^4.1.2",
"cli-progress": "^3.9.1",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^8.2.0",
"entity-diff": "^1.0.6",
"express": "^4.17.1",
"facebook-event-scraper": "^0.0.13",
"firebase-admin": "^10.0.0",
"fs": "^0.0.1-security",
"glob": "^7.2.0",
"googleapis": "^104.0.0",
"https": "^1.0.0",
"humanize-duration": "^3.27.0",
"ical": "^0.8.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"puppeteer": "^7.0.0",
"readline": "^1.3.0",
"schema-dts": "^1.1.0",
"ssl-root-cas": "^1.3.1",
"yaml": "^1.10.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/cli-progress": "^3.9.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.13",
"@types/glob": "^7.1.4",
"@types/ical": "^0.8.0",
"@types/lodash": "^4.14.200",
"@types/mkdirp": "^1.0.1",
"@types/progress": "^2.0.3",
"@types/puppeteer": "^5.4.2",
"@types/yargs": "^16.0.1",
"rimraf": "^3.0.2",
"tslint": "^5.12.0",
"typescript": "^5.2.2"
},
"private": true
}