-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "omada-scraper",
"version": "1.0.0",
"main": "main.js",
"repository": "[email protected]:bottleneckco/omada-scraper.git",
"author": "Duncan Leo <[email protected]>",
"license": "MIT",
"scripts": {
"scrape": "node dist/scraper.js",
"dev:scrape": "ts-node src/scraper.ts",
"build": "tsc -p tsconfig.production.json --outDir dist && cp -R src/templates dist/",
"clean": "rm -Rf dist/**",
"start": "ts-node src/server.ts"
},
"dependencies": {
"@sentry/node": "^5.20.1",
"axios": "^1.6.0",
"bluebird": "^3.7.2",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"pug": "^3.0.2",
"puppeteer": "^21.5.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"ts-polyfill": "^3.8.2",
"turndown": "^7.0.0",
"xast-util-to-xml": "^3.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.159",
"@types/luxon": "^3.4.2",
"@types/node": "~18",
"@types/pug": "^2.0.10",
"@types/turndown": "^5.0.0",
"@types/validator": "^13.0.0",
"@types/xast": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^5.16.0 || ^6.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^4.9.4"
}
}