-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "scrapereq",
"version": "1.0.0",
"description": "Web scraping API using puppeteer",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write . --single-quote --no-bracket-spacing=false --quote-props=preserve",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"docker:build": "docker build -t scrapereq .",
"docker:run": "docker run -p 3000:3000 -d --name scrapereq-container scrapereq",
"docker:start": "node ."
},
"keywords": [
"puppeteer",
"web-scraping",
"express",
"api"
],
"author": "Erdinç Cürebal",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/erdinccurebal/scrapereq.git"
},
"bugs": {
"url": "https://github.com/erdinccurebal/scrapereq/issues"
},
"homepage": "https://github.com/erdinccurebal/scrapereq#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@puppeteer/replay": "^3.1.1",
"cors": "^2.8.6",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"morgan": "^1.10.1",
"puppeteer": "^24.8.0",
"puppeteer-extra": "^3.3.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"supertest": "^7.1.0"
}
}