-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 873 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
{
"name": "saml-api",
"version": "1.1.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"start": "./node_modules/.bin/ts-node-dev src/server.ts",
"public": "ngrok http 3000 --host-header=rewrite",
"public2": "ssh -R 80:localhost:3000 localhost.run",
"build": "rm -rf build && prettier --write src/ && tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"passport": "^0.6.0",
"passport-saml": "^3.2.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/passport": "^1.0.6",
"@types/passport-saml": "^1.1.2"
}
}