-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "articalscraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"lint": "eslint **/*.js --quiet",
"fix": "eslint --fix .",
"test": "npm run lint && cross-env NODE_ENV=test mocha -u tdd --reporter spec --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sayex/articalscraper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sayex/articalscraper/issues"
},
"homepage": "https://github.com/sayex/articalscraper#readme",
"dependencies": {
"axios": "^0.18.1",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.3.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^5.2.0",
"prettier": "^1.18.2"
}
}