-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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": "nodejs-social-auth-starter",
"version": "1.0.0",
"description": "Code for setting up multi-provider (Google, Github, Facebook, Twitter) social authentication using passport in node.js application. Also includes multiple account login functionality.",
"main": "src/index.js",
"scripts": {
"build": "cd ./client && npm run build",
"start": "npm run build && node ./src/index.js",
"dev": "npx nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rishabh570/nodejs-social-auth-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rishabh570/nodejs-social-auth-starter/issues"
},
"homepage": "https://github.com/Rishabh570/nodejs-social-auth-starter#readme",
"_moduleAliases": {
"@loaders": "./src/loaders",
"@routes": "./src/api/routes",
"@middleware": "./src/api/middleware",
"@models": "./src/models",
"@services": "./src/services",
"@config": "./src/config"
},
"dependencies": {
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.18.1",
"express-session": "^1.17.2",
"module-alias": "^2.2.2",
"mongoose": "^6.3.1",
"passport": "^0.5.2",
"passport-amazon": "^1.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"patch-package": "^6.4.7"
}
}