-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "ldap-jwt-auth",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon",
"test": "jest --detectOpenHandles",
"key": "ts-node scripts/generateSecretKey.ts",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rastereo/ldap-jwt-auth.git"
},
"author": "rastereo",
"license": "ISC",
"bugs": {
"url": "https://github.com/rastereo/ldap-jwt-auth/issues"
},
"homepage": "https://github.com/rastereo/ldap-jwt-auth#readme",
"description": "",
"keywords": [
"ldap",
"jwt",
"express"
],
"dependencies": {
"celebrate": "^15.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-ldapauth": "^3.0.1",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-pretty": "^13.0.0",
"validator": "^13.12.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/eslint-config-prettier": "^6.11.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"@types/passport": "^1.0.17",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.12.2",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}