-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "fcc-advanced-node-and-express",
"author": "Denis Gitau",
"version": "0.0.1",
"description": "Learning advanced node",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.16.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.1",
"node": "12.18.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^3.0.0",
"bcrypt": "~5.0.0",
"passport-github": "~1.0.0",
"socket.io": "~2.3.0",
"passport.socketio": "~3.7.0",
"connect-mongo": "~3.2.0",
"cookie-parser": "~1.4.5"
},
"repository": {
"type": "git",
"url": "https://glitch.com/#!/project/welcome-project"
},
"keywords": [
"node",
"express",
"pug",
"passport",
"socketio"
],
"license": "MIT",
"devDependencies": {
"nodemon": "^2.0.4"
}
}