-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 802 Bytes
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
{
"name": "home-assistant-auth-proxy",
"version": "1.0.0",
"description": "Authentication proxy using home assistant auth",
"main": "main.js",
"type": "module",
"scripts": {
"start": "tsc && node ./dist/main.js",
"build": "rimraf dist && tsc"
},
"author": "Arno De Witte",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"express-http-proxy": "^1.6.3",
"express-session": "^1.17.3",
"express-session-sqlite": "^2.1.1",
"http-proxy-middleware": "^2.0.6",
"node-fetch": "^3.3.0",
"sqlite3": "^5.1.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/http-proxy-middleware": "^1.0.0",
"@types/sqlite3": "^3.1.8",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
}
}