-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "pseuplex",
"version": "0.0.1",
"description": "A middleware for the plex server API",
"main": "/dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/lufinkey/pseuplex.git"
},
"scripts": {
"build": "tsc",
"start": "tsc && node dist/main.js",
"start_test": "tsc && node dist/main.js --config=config/config.json --verbose",
"debug": "tsc && node --inspect dist/main.js --config=config/config.json --verbose",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "Zlib",
"dependencies": {
"express": "^5.0.0",
"express-http-proxy": "^2.0.0",
"http-proxy": "^1.18.1",
"httpolyglot": "^0.1.2",
"letterboxd-retriever": "https://github.com/lufinkey/letterboxd-retriever.git",
"uuid": "^10.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-http-proxy": "^1.6.6",
"@types/http-proxy": "^1.17.15",
"@types/node": "^20.14.11",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"typescript": "^5.5.3"
}
}