-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
63
64
65
66
67
68
69
{
"name": "cognifeed",
"version": "1.0.0",
"description": "Cognifeed is a knowledge aggregator application which aims to make you smarter in this distracted world.",
"main": "src/app.js",
"dependencies": {
"axios": "^1.6.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.6",
"cheerio-eq": "^1.0.1",
"decompress-response": "^7.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^12.0.0",
"firebase-functions": "^3.13.2",
"got": "^11.8.2",
"jsonwebtoken": "^9.0.0",
"log-to-file": "^2.0.2",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^3.9.7",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"robots-parser": "^2.3.0",
"validator": "^13.6.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app",
"test": "mocha test/test.js -r chai/register-expect",
"test-link": "mocha test/test-link.js -r chai/register-expect",
"test-links-collection": "mocha test/test-links-collection.js -r chai/register-expect",
"test-filter": "mocha test/test-filter.js -r chai/register-expect",
"test-spider": "mocha test/test-spider.js -r chai/register-expect",
"test-server": "mocha test/test-server.js -r chai/register-expect",
"test-robots": "mocha test/test-robots.js -r chai/register-expect",
"test-purifier": "mocha test/test-purifier.js -r chai/register-expect"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/saileshbro/cognifeed.git"
},
"author": "Sailesh Dahal",
"private": true,
"bugs": {
"url": "https://gitlab.com/saileshbro/cognifeed/issues"
},
"engines": {
"node": "13.x",
"npm": "6.14.x"
},
"homepage": "https://gitlab.com/saileshbro/cognifeed#readme"
}