-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "webscraper",
"version": "1.0.0",
"description": "An simple tool made with server side and client side for Scraping Websites and download them.",
"repository": {
"type": "git",
"url": "git+https://github.com/GreenTreeTeam/WebScraper.git"
},
"author": "GreenTreeTeam",
"license": "MIT",
"bugs": {
"url": "https://github.com/GreenTreeTeam/WebScraper/issues"
},
"homepage": "https://github.com/GreenTreeTeam/WebScraper#readme",
"dependencies": {
"@babel/preset-env": "^7.26.9",
"@types/archiver": "^5.3.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jquery": "^3.5.32",
"@types/node": "^14.18.63",
"archiver": "^5.3.2",
"cors": "^2.8.5",
"express": "^4.21.2",
"parcel": "^2.14.4",
"postcss": "^8.5.3",
"website-scraper": "^4.2.3",
"website-scraper-puppeteer": "^0.1.5",
"zip-a-folder": "^0.0.12"
},
"devDependencies": {
"@parcel/transformer-sass": "2.14.4",
"sass": "^1.87.0",
"typescript": "^4.9.5"
},
"scripts": {
"start": "yarn build:tsc && yarn build:parcel && node build/index",
"build:tsc": "tsc",
"build:parcel": "parcel build index.html --dist-dir dist"
}
}