-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"private": true,
"name": "discord-scraper",
"author": "Jaime Filho (https://github.com/jaimeadf)",
"license": "NPOSL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/jaimeadf/discord-scraper.git"
},
"scripts": {
"scrape": "ts-node --files src/index.ts",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.11",
"@types/js-beautify": "^1.13.1",
"@types/mime-types": "^2.1.0",
"@types/node": "^15.12.1",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
},
"dependencies": {
"axios": "^0.21.1",
"commander": "^7.2.0",
"fs-extra": "^10.0.0",
"js-beautify": "^1.13.13",
"mime-types": "^2.1.31",
"puppeteer": "^13.5.2",
"url-parse": "^1.5.1"
}
}