-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage --watch",
"seed": "node database/seeds",
"dev-server": "nodemon index.js",
"server": "forever -c \"nodemon --exitcrash -L \" index.js",
"start": "node index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"forever": "^2.0.0",
"jest": "^25.3.0",
"nodemon": "^2.0.3",
"supertest": "^4.0.2"
},
"dependencies": {
"@sokratis/passport-linkedin-oauth2": "^2.1.0",
"article-parser": "^4.1.1",
"axios": "^0.19.2",
"celebrate": "^12.1.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"faker": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.9.9",
"mongoose-bcrypt": "^1.6.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-local": "^1.0.0",
"rss-parser": "^3.7.6"
}
}