-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "saml2-express-ts-sample",
"version": "0.0.1",
"description": "an example for saml2 integration with OKTA.",
"main": "index.js",
"scripts": {
"start:dev": "ts-node-dev ./src/index.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/weihanchen/saml2-express-ts-sample.git"
},
"keywords": [
"saml2",
"okta",
"adfs"
],
"author": "weihanchen",
"license": "ISC",
"bugs": {
"url": "https://github.com/weihanchen/saml2-express-ts-sample/issues"
},
"homepage": "https://github.com/weihanchen/saml2-express-ts-sample#readme",
"dependencies": {
"@node-saml/node-saml": "^4.0.3",
"@node-saml/passport-saml": "^4.0.2",
"dotenv": "^16.0.1",
"express": "^4.16.4",
"express-session": "^1.17.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-saml-metadata": "^3.1.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "4.16.1",
"@types/express-session": "^1.17.4",
"@types/lodash": "^4.14.191",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/passport": "^1.0.9",
"@types/passport-saml-metadata": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-sonarjs": "^0.13.0",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"ts-node-dev": "^2.0.0"
},
"lint-staged": {
"*.ts": "eslint",
"*.{ts,md}": "prettier --write"
}
}