-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 758 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 758 Bytes
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
{
"name": "base-auth",
"version": "0.0.1",
"description": "Authentication system with express, passport and mongodb",
"main": "server.js",
"repository": "https://github.com/csonmez/base-auth.git",
"author": "cemsonmez <cem.sonmez@outlook.com.tr>",
"license": "MIT",
"scripts": {
"dev": "nodemon server.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.10",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.0.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}