-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "web-scraper",
"version": "1.0.0",
"description": "Scrap publicly available data from different web pages",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src\\index",
"dev": "nodemon src\\index",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --silent --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/piopon/web-scraper.git"
},
"keywords": [
"data scraping",
"web scraping"
],
"author": "piopon <piopon.github@gmail.com>",
"license": "GPL-2.0",
"dependencies": {
"ajv": "^8.17.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-fileupload": "^1.5.1",
"express-flash": "^0.0.2",
"express-handlebars": "^8.0.1",
"express-session": "^1.18.0",
"handlebars-helpers": "^0.10.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.6.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"puppeteer": "^23.1.0",
"web-scraper": "file:"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0"
},
"jest": {
"slowTestThreshold": 15,
"transform": {},
"coverageThreshold": {
"global": {
"branches": 65,
"functions": 80,
"lines": 70,
"statements": 70
}
}
},
"exhortignore": [
"web-scraper"
]
}