-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 852 Bytes
/
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
{
"name": "web-crawler",
"version": "1.0.0",
"description": "Webcrawler to fetch cookies",
"main": "crawler.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon crawler.js",
"dev": "nodemon crawler.js",
"server": "node server.js",
"build": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixaschultz/web-crawler.git"
},
"author": "Felix A. Schultz",
"license": "ISC",
"bugs": {
"url": "https://github.com/felixaschultz/web-crawler/issues"
},
"homepage": "https://github.com/felixaschultz/web-crawler#readme",
"dependencies": {
"axios": "^1.6.5",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"express": "^4.18.2",
"nodemon": "^3.0.3",
"puppeteer": "^19.11.1",
"react": "^18.2.0"
}
}