-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 851 Bytes
/
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
{
"name": "rit-shibboleth-example-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "ts-node ./index.ts",
"dev": "nodemon --exec \"ts-node\" ./index.ts",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install"
},
"keywords": [],
"author": "Adam Wolf",
"license": "MIT",
"dependencies": {
"@types/passport-saml": "^1.1.3",
"body-parser": "^1.19.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"passport": "^0.5.2",
"passport-saml": "^3.2.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.4",
"@types/node": "^17.0.14",
"husky": "^7.0.4",
"prettier": "^2.5.1"
}
}