-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "authpool",
"version": "3.0.0",
"description": "Plug-and-play Node.js authentication server with OAuth, JWT, RBAC, CSRF, rate limiting and more.",
"main": "index.js",
"types": "types/index.d.ts",
"type": "commonjs",
"scripts": {
"test": "node tests/test.js",
"start": "node tests/server.js",
"dev": "nodemon tests/server.js"
},
"keywords": [
"authentication",
"oauth",
"passport",
"jwt",
"nodejs",
"mongodb",
"rbac",
"csrf"
],
"author": "Ashish Bhati",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf-csrf": "^3.2.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.1",
"express-slow-down": "^3.0.0",
"helmet": "^8.0.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.14.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}