-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.03 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.03 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@nestbolt/authentication",
"version": "0.1.1",
"packageManager": "pnpm@9.15.4",
"description": "Frontend-agnostic authentication backend for NestJS with 2FA, password reset, email verification, and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:results": "npx vitest run --coverage 2>&1 | grep -E \"All files|%\" | head -10",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'test/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"prepublishOnly": "npm run build"
},
"keywords": [
"nestjs",
"authentication",
"auth",
"jwt",
"passport",
"2fa",
"two-factor",
"totp",
"password-reset",
"email-verification",
"login",
"register"
],
"author": "Nestbolt",
"license": "MIT",
"homepage": "https://github.com/nestbolt/authentication#readme",
"repository": {
"type": "git",
"url": "https://github.com/nestbolt/authentication"
},
"bugs": {
"url": "https://github.com/nestbolt/authentication/issues"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"@nestjs/event-emitter": "^2.0.0 || ^3.0.0",
"@nestjs/jwt": "^10.0.0 || ^11.0.0",
"@nestjs/passport": "^10.0.0 || ^11.0.0",
"class-transformer": "^0.5.0",
"class-validator": "^0.14.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13 || ^0.2.0"
},
"peerDependenciesMeta": {
"class-transformer": {
"optional": true
},
"class-validator": {
"optional": true
},
"@nestjs/event-emitter": {
"optional": true
}
},
"dependencies": {
"bcrypt": "^5.0.0",
"otplib": "^12.0.0",
"qrcode": "^1.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/event-emitter": "^3.0.0",
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@types/bcrypt": "^5.0.0",
"@types/ms": "^2.1.0",
"@types/node": "^20.19.37",
"@types/passport-jwt": "^4.0.0",
"@types/passport-local": "^1.0.0",
"@types/qrcode": "^1.5.0",
"@vitest/coverage-v8": "^4.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"prettier": "^3.8.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}