-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "mongodb-scraper",
"version": "1.0.0",
"engines": {
"node": "12.13.0"
},
"description": "mongoDB assignment",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"test": "npm run lint && cross-env NODE_ENV=test mocha -u bdd --reporter spec --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armonkahil/MongoDB-Scraper.git"
},
"author": "Armon Roberts",
"license": "MIT",
"bugs": {
"url": "https://github.com/armonkahil/MongoDB-Scraper/issues"
},
"homepage": "https://github.com/armonkahil/MongoDB-Scraper#readme",
"dependencies": {
"axios": "^0.19.0",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"core-util-is": "^1.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"gradient-string": "^1.2.0",
"mongoose": "^5.8.1"
},
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"webpack": "^4.41.3"
},
"keywords": []
}