-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.22 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
{
"name": "@tomkoooo/t-auth",
"version": "2.2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"auth",
"typescript",
"react",
"next",
"express",
"mongodb",
"nodemailer",
"jwt",
"bcrypt",
"component",
"frontend",
"backend",
"fullstack",
"authentication",
"ui"
],
"author": "Tomkoooo",
"license": "MIT",
"description": "A TypeScript-based authentication and mailer package for React and Next.js applications using Express and MongoDB.",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongodb": "^4.0.7",
"@types/node": "^22.8.7",
"@types/nodemailer": "^6.4.16",
"@types/react": "^18.3.12",
"tsup": "^8.3.5"
},
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"next": "^15.0.2",
"nodemailer": "^6.9.16",
"react": "^18.3.1"
}
}