-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.56 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
{
"name": "@pranshul_soni/authapi",
"version": "2.2.0",
"description": "Express authentication router with JWT, refresh tokens, PostgreSQL storage, email verification, password reset, rate limiting, and Google OAuth.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test tests/*.test.js",
"prepublishOnly": "npm test && npm run typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PranshulSoni/AuthAPI.git"
},
"keywords": [
"auth",
"authentication",
"express",
"jwt",
"postgresql",
"oauth",
"typescript"
],
"author": "Pranshul Soni",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/PranshulSoni/AuthAPI/issues"
},
"homepage": "https://github.com/PranshulSoni/AuthAPI#readme",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.9.2",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"typescript": "^6.0.3"
},
"dependencies": {
"bcrypt": "^6.0.0",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^8.0.10",
"pg": "^8.21.0",
"rate-limit-redis": "^5.0.0",
"redis": "^6.0.0"
}
}