-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "@flycatch/auth-core",
"version": "1.4.0",
"description": "A unified authentication module for Express.js, NestJS frameworks, supporting JWT, session-based, and Google OAuth login.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/flycatch/auth-core.git"
},
"keywords": [
"auth",
"oauth",
"jwt",
"session",
"express",
"passportjs"
],
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .ts,.js",
"test": "jest"
},
"files": [
"dist",
"docs"
],
"author": "flycatch",
"license": "GPL-3.0",
"dependencies": {
"bcrypt": "^6.0.0",
"body-parser": "^1.20.3",
"express": "^4.21.2",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/bcrypt": "^6.0.0",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/supertest": "^6.0.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jest": "^30.0.5",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
}
}