-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1020 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "webcrawlernode",
"version": "1.0.0",
"description": "",
"main": "server.js",
"nyc": {
"include": [
"server.js"
],
"all": true
},
"scripts": {
"test": "mocha --parallel --timeout=2000 test/*.test.js",
"test:cov": "nyc --reporter=html --reporter=text mocha --parallel --exit test/*.test.js",
"coverage": "nyc mocha --parallel",
"start": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.3.3",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-handlebars": "^6.0.6",
"fs": "^0.0.1-security",
"mongodb": "^4.10.0",
"mongoose": "^6.6.5",
"natural": "^5.2.4",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"supertest": "^6.3.3",
"synonyms": "^1.0.1",
"url": "^0.11.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}