-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "news_pad_server2",
"version": "1.0.0",
"description": "Server side of the NewsPad_v2 client. This handles user authentication and saving news articles.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Collins33/NewsPad_v2_server.git"
},
"engines": {
"node": "11.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"google-spreadsheet": "^2.0.8",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"morgan": "^1.9.1",
"nodemailer": "^6.3.0",
"passport": "^0.4.1",
"passport-google-plus-token": "^2.1.0",
"passport-google-token": "^0.1.2",
"request": "^2.88.2"
},
"devDependencies": {
"nodemon": "^1.19.1"
},
"bugs": {
"url": "https://github.com/Collins33/NewsPad_v2_server/issues"
},
"homepage": "https://github.com/Collins33/NewsPad_v2_server#readme"
}