-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 994 Bytes
/
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
{
"name": "talkaway",
"version": "0.1.0",
"description": "A simple blog app with Node.js and Google Authentication.",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node app",
"dev": "cross-env NODE_ENV=development nodemon app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasimy-as/TalkAway.git"
},
"author": "Hasimy, Andri",
"license": "MIT",
"bugs": {
"url": "https://github.com/hasimy-as/TalkAway/issues"
},
"homepage": "https://github.com/hasimy-as/TalkAway#readme",
"dependencies": {
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"moment": "^2.27.0",
"mongoose": "^5.9.25",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^2.0.4"
}
}