This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.16 KB
/
package.json
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
{
"name": "pass-auth",
"version": "1.6.0-SNAPSHOT",
"description": "A service provider authentication strategy for the pass-eclipse project.",
"author": "Jared Galanis",
"proxy": "https://pass.local",
"scripts": {
"build": "docker build -t ghcr.io/eclipse-pass/pass-auth:$npm_package_version .",
"build:latest": "docker build -t ghcr.io/eclipse-pass/pass-auth:latest .",
"start": "tsc & nodemon dist/app.js",
"test": "jest",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"tsc": "tsc",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"errorhandler": "^1.5.1",
"express": "^4.18.1",
"express-enforces-ssl": "^1.1.0",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"formidable": "v3",
"helmet": "^6.0.0",
"http-proxy": "^1.18.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"passport": "^0.5.3",
"passport-saml": "^3.2.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@tsconfig/node18": "1.0.3",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-enforces-ssl": "^1.1.1",
"@types/express-session": "^1.17.7",
"@types/http-proxy": "^1.17.11",
"@types/morgan": "^1.9.4",
"@types/node": "^20.1.7",
"@types/passport": "^1.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.1.0",
"typescript": "4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">= 18"
},
"license": "MIT"
}