1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-28 03:41:58 +00:00
immich-public-proxy/app/package.json

39 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2024-10-28 08:08:16 +00:00
{
"name": "immich-public-proxy",
2024-12-26 22:27:28 +00:00
"version": "1.5.5",
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",
2024-11-03 14:19:12 +00:00
"test": "podman build --build-arg PACKAGE_VERSION=$(npm pkg get version | xargs) --format docker -t immich-proxy-test .. && podman run --init -it -p=3000:3000 --env-file .env immich-proxy-test",
2024-10-28 08:56:11 +00:00
"start": "node dist/index.js"
2024-10-28 08:08:16 +00:00
},
2024-11-01 08:03:05 +00:00
"author": "Alan Grainger",
2024-11-14 11:44:54 +00:00
"license": "AGPL-3.0",
2024-11-01 08:03:05 +00:00
"description": "Share your Immich photos and albums in a safe way without exposing your Immich instance to the public.",
"repository": {
"type": "git",
"url": "https://github.com/alangrainger/immich-public-proxy.git"
},
"main": "dist/index.js",
2024-11-28 20:04:09 +00:00
"bin": "dist/index.js",
2024-10-28 08:08:16 +00:00
"dependencies": {
2024-11-15 14:48:12 +00:00
"archiver": "^7.0.1",
2024-10-28 19:47:14 +00:00
"dayjs": "^1.11.13",
2024-11-15 14:48:12 +00:00
"dotenv": "^16.4.5",
2024-10-29 14:55:12 +00:00
"ejs": "^3.1.10",
2024-11-15 14:48:12 +00:00
"express": "^4.21.1",
"tslib": "^2.8.1",
"typescript": "^5.6.2"
},
"devDependencies": {
2024-11-15 14:48:12 +00:00
"@types/archiver": "^6.0.3",
"@types/express": "^4.17.21",
2024-11-15 14:48:12 +00:00
"@types/node": "^16.18.111",
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",
2024-11-15 14:48:12 +00:00
"eslint-config-standard": "^17.1.0",
"ts-node": "^10.9.2"
2024-10-28 08:08:16 +00:00
}
}