1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-28 20:01:57 +00:00
immich-public-proxy/package.json

32 lines
814 B
JSON
Raw Normal View History

2024-10-28 08:08:16 +00:00
{
"name": "immich-public-proxy",
2024-10-31 18:24:39 +00:00
"version": "1.2.2",
2024-10-29 14:55:12 +00:00
"main": "dist/index.js",
2024-10-28 08:08:16 +00:00
"scripts": {
2024-10-28 08:56:11 +00:00
"dev": "ts-node src/index.ts",
"build": "npx tsc",
"test": "podman build -t immich-proxy-test . && podman run --init -it -p=3000:3000 immich-proxy-test",
2024-10-28 08:56:11 +00:00
"start": "node dist/index.js"
2024-10-28 08:08:16 +00:00
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.21.1",
"dotenv": "^16.4.5",
2024-10-28 19:47:14 +00:00
"dayjs": "^1.11.13",
2024-10-29 14:55:12 +00:00
"ejs": "^3.1.10",
"typescript": "^5.6.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"ts-node": "^10.9.2",
2024-10-28 08:56:11 +00:00
"@types/node": "^16.18.111",
"@types/express": "^4.17.21",
2024-10-28 08:56:11 +00:00
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "^8.49.0",
"eslint-config-standard": "^17.1.0"
2024-10-28 08:08:16 +00:00
}
}