-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "DragonScraper",
"version": "0.1.0",
"description": "A scraper for LoL related websites",
"main": "scraper.js",
"author": "Sandi Karajic",
"license": "MIT",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/scraper.ts",
"compile": "./node_modules/.bin/pkg .build/cache/dragon-scraper.js --out-path='.build/bin' --targets node10-linux-x64,node10-macos-x64",
"bundle": "webpack",
"build": "npm run bundle && npm run compile",
"prebuild": "rimraf .bin"
},
"dependencies": {
"axios": "^0.19.0",
"bufferutil": "^4.0.1",
"chalk": "^2.4.2",
"cli-progress": "^3.3.1",
"commander": "^4.0.0",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^8.1.0",
"puppeteer": "^2.0.0",
"ts-polyfill": "^3.5.3",
"utf-8-validate": "^5.0.2",
"ytdl-core": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.3",
"@types/puppeteer": "^1.20.2",
"@types/youtube-dl": "^1.12.2",
"pkg": "^4.4.0",
"rimraf": "^3.0.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}