-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "derivitave-daily",
"version": "1.0.0",
"description": "A Full-Stack Web-Scraping News Site",
"directories": {
"test": "test"
},
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scotteratigan/derivitave-daily.git"
},
"keywords": [
"news",
"scraping"
],
"author": "Scott Ratigan",
"license": "MIT",
"bugs": {
"url": "https://github.com/scotteratigan/derivitave-daily/issues"
},
"homepage": "https://github.com/scotteratigan/derivitave-daily#readme",
"dependencies": {
"axios": "^0.18.0",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"mongoose": "^5.4.7",
"morgan": "^1.9.1",
"npm": "^6.7.0"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"tabs": true,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"endOfLine": "lf"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2.0"
}
}