-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "modularauth-kit",
"version": "1.0.0",
"description": "A production-ready, drop-in authentication module for Node.js + Express.js + TypeScript + MongoDB",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"type-check": "tsc --noEmit"
},
"keywords": [
"authentication",
"auth",
"express",
"typescript",
"mongodb",
"session",
"oauth",
"modular"
],
"license": "MIT",
"dependencies": {
"argon2": "^0.44.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"helmet": "^8.1.0",
"mongoose": "^9.3.1",
"nodemailer": "^8.0.3",
"ua-parser-js": "^2.0.9",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/nodemailer": "^7.0.11",
"@types/ua-parser-js": "^0.7.39",
"@types/uuid": "^10.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}