-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.16 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.16 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
{
"name": "@daksh-dev/light-auth",
"version": "1.0.2",
"description": "A lightweight and flexible authentication package for Express.js (JWT & Sessions).",
"main": "setupAuth.js",
"types": "index.d.ts",
"type": "module",
"files": [
"setupAuth.js",
"modules/",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Daksh-Dixit21/light-auth.git"
},
"keywords": [
"nodejs",
"express",
"authentication",
"auth",
"jwt",
"session",
"security",
"middleware",
"javascript"
],
"author": "Daksh Dixit",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.12.3",
"peerDependencies": {
"express": "^4.19.0",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"mongoose": "^8.3.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"express": "^4.19.2",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"mongoose": "^8.3.2"
}
}