-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.4 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "auth-guide",
"description": "A comprehensive guide to authentication methods in Node.js applications with production-ready examples",
"version": "1.0.0",
"type": "module",
"scripts": {
"format": "prettier --write .",
"session:express": "yarn workspace @auth-guide/session-auth-express dev",
"session:fastify": "yarn workspace @auth-guide/session-auth-fastify dev",
"jwt:express": "yarn workspace @auth-guide/jwt-auth-express dev",
"jwt:fastify": "yarn workspace @auth-guide/jwt-auth-fastify dev",
"oauth:express": "yarn workspace @auth-guide/oauth-social-login-express dev",
"oauth:fastify": "yarn workspace @auth-guide/oauth-social-login-fastify dev",
"sso:express": "yarn workspace @auth-guide/enterprise-sso-express dev",
"sso:fastify": "yarn workspace @auth-guide/enterprise-sso-fastify dev",
"test": "echo \"Run specific tests with: yarn session:test:express, yarn session:test:fastify, yarn jwt:test:express, or yarn jwt:test:fastify\"",
"session:test:express": "yarn workspace @auth-guide/session-auth-express test",
"session:test:fastify": "yarn workspace @auth-guide/session-auth-fastify test",
"jwt:test:express": "yarn workspace @auth-guide/jwt-auth-express test",
"jwt:test:fastify": "yarn workspace @auth-guide/jwt-auth-fastify test",
"oauth:test:express": "yarn workspace @auth-guide/oauth-social-login-express test",
"oauth:test:fastify": "yarn workspace @auth-guide/oauth-social-login-fastify test",
"mfa:express": "yarn workspace @auth-guide/mfa-express dev",
"mfa:fastify": "yarn workspace @auth-guide/mfa-fastify dev",
"pwd:express": "yarn workspace @auth-guide/passwordless-express dev",
"pwd:fastify": "yarn workspace @auth-guide/passwordless-fastify dev",
"web3:express": "yarn workspace @auth-guide/web3-auth-express dev",
"web3:fastify": "yarn workspace @auth-guide/web3-auth-fastify dev"
},
"workspaces": [
"apps/*/*",
"apps/*"
],
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@solana/web3.js": "^1.98.4",
"axios": "^1.13.5",
"bitcoinjs-message": "^2.2.0",
"bs58": "^6.0.0",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"express": "^5.2.1",
"fastify": "^5.7.2",
"helmet": "^8.1.0",
"mongoose": "^9.1.5",
"nodemailer": "^8.0.1",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"qrcode": "^1.5.4",
"redis": "^5.11.0",
"siwe": "^3.0.0",
"tweetnacl": "^1.0.3",
"twilio": "^5.12.2"
},
"devDependencies": {
"prettier": "^3.8.1"
},
"author": {
"name": "ExorTek",
"url": "https://github.com/ExorTek"
},
"license": "MIT",
"homepage": "https://github.com/ExorTek/nodejs-auth-methods-guide#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ExorTek/nodejs-auth-methods-guide.git"
},
"bugs": {
"url": "https://github.com/ExorTek/nodejs-auth-methods-guide/issues"
},
"keywords": [
"authentication",
"authorization",
"nodejs",
"express",
"fastify",
"jwt",
"oauth",
"session",
"security",
"webauthn",
"passkeys",
"web3",
"blockchain",
"mfa",
"2fa",
"saml",
"oidc",
"turkish",
"guide",
"tutorial",
"production-ready"
],
"packageManager": "yarn@4.13.0",
"engines": {
"node": ">=20.0.0",
"yarn": ">=4.0.0"
}
}