2022-02-03 09:06:44 -07:00
|
|
|
{
|
|
|
|
"name": "immich",
|
2024-10-02 18:59:28 -07:00
|
|
|
"version": "1.117.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"description": "",
|
|
|
|
"author": "",
|
|
|
|
"private": true,
|
2024-02-12 08:31:59 -07:00
|
|
|
"license": "GNU Affero General Public License version 3",
|
2022-02-03 09:06:44 -07:00
|
|
|
"scripts": {
|
2023-06-08 08:01:07 -07:00
|
|
|
"build": "nest build",
|
2023-01-12 07:44:11 -07:00
|
|
|
"format": "prettier --check .",
|
|
|
|
"format:fix": "prettier --write .",
|
2023-06-08 08:01:07 -07:00
|
|
|
"start": "npm run start:dev",
|
2022-11-14 21:39:32 -07:00
|
|
|
"nest": "nest",
|
2023-09-08 08:17:45 -07:00
|
|
|
"start:dev": "nest start --watch --",
|
|
|
|
"start:debug": "nest start --debug 0.0.0.0:9230 --watch --",
|
2023-08-01 08:49:50 -07:00
|
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --max-warnings 0",
|
2022-06-25 10:53:06 -07:00
|
|
|
"lint:fix": "npm run lint -- --fix",
|
2023-01-12 07:44:11 -07:00
|
|
|
"check": "tsc --noEmit",
|
|
|
|
"check:code": "npm run format && npm run lint && npm run check",
|
2023-01-12 15:07:57 -07:00
|
|
|
"check:all": "npm run check:code && npm run test:cov",
|
2024-04-16 07:44:45 -07:00
|
|
|
"test": "vitest",
|
|
|
|
"test:watch": "vitest --watch",
|
|
|
|
"test:cov": "vitest --coverage",
|
2023-10-05 09:35:58 -07:00
|
|
|
"typeorm": "typeorm",
|
2024-04-29 06:48:28 -07:00
|
|
|
"lifecycle": "node ./dist/utils/lifecycle.js",
|
2023-10-05 09:35:58 -07:00
|
|
|
"typeorm:migrations:create": "typeorm migration:create",
|
2024-03-20 20:15:09 -07:00
|
|
|
"typeorm:migrations:generate": "typeorm migration:generate -d ./dist/database.config.js",
|
|
|
|
"typeorm:migrations:run": "typeorm migration:run -d ./dist/database.config.js",
|
|
|
|
"typeorm:migrations:revert": "typeorm migration:revert -d ./dist/database.config.js",
|
|
|
|
"typeorm:schema:drop": "typeorm query -d ./dist/database.config.js 'DROP schema public cascade; CREATE schema public;'",
|
2023-02-18 13:58:55 -07:00
|
|
|
"typeorm:schema:reset": "npm run typeorm:schema:drop && npm run typeorm:migrations:run",
|
2024-05-23 04:40:57 -07:00
|
|
|
"sync:open-api": "node ./dist/bin/sync-open-api.js",
|
|
|
|
"sync:sql": "node ./dist/bin/sync-sql.js",
|
2024-05-02 07:43:18 -07:00
|
|
|
"email:dev": "email dev -p 3050 --dir src/emails"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-28 12:41:57 -07:00
|
|
|
"@nestjs/bullmq": "^10.0.1",
|
|
|
|
"@nestjs/common": "^10.2.2",
|
|
|
|
"@nestjs/config": "^3.0.0",
|
|
|
|
"@nestjs/core": "^10.2.2",
|
2024-03-17 12:16:02 -07:00
|
|
|
"@nestjs/event-emitter": "^2.0.4",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@nestjs/platform-express": "^10.2.2",
|
|
|
|
"@nestjs/platform-socket.io": "^10.2.2",
|
2024-01-01 20:25:25 -07:00
|
|
|
"@nestjs/schedule": "^4.0.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@nestjs/swagger": "^7.1.8",
|
|
|
|
"@nestjs/typeorm": "^10.0.0",
|
|
|
|
"@nestjs/websockets": "^10.2.2",
|
2024-09-17 15:31:12 -07:00
|
|
|
"@opentelemetry/auto-instrumentations-node": "^0.50.0",
|
2024-05-01 12:29:20 -07:00
|
|
|
"@opentelemetry/context-async-hooks": "^1.24.0",
|
2024-09-03 00:59:17 -07:00
|
|
|
"@opentelemetry/exporter-prometheus": "^0.53.0",
|
|
|
|
"@opentelemetry/sdk-node": "^0.53.0",
|
2024-09-17 15:31:12 -07:00
|
|
|
"@react-email/components": "^0.0.25",
|
2024-07-03 13:27:29 -07:00
|
|
|
"@socket.io/redis-adapter": "^8.3.0",
|
2024-03-05 10:26:54 -07:00
|
|
|
"archiver": "^7.0.0",
|
2023-12-08 09:15:46 -07:00
|
|
|
"async-lock": "^1.4.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"bcrypt": "^5.1.1",
|
|
|
|
"bullmq": "^4.8.0",
|
2024-01-31 09:26:51 -07:00
|
|
|
"chokidar": "^3.5.3",
|
2022-02-03 09:06:44 -07:00
|
|
|
"class-transformer": "^0.5.1",
|
2023-04-12 13:56:07 -07:00
|
|
|
"class-validator": "^0.14.0",
|
2022-07-18 12:14:25 -07:00
|
|
|
"cookie-parser": "^1.4.6",
|
2024-10-04 01:30:49 -07:00
|
|
|
"exiftool-vendored": "^28.3.1",
|
2024-03-10 19:30:57 -07:00
|
|
|
"fast-glob": "^3.3.2",
|
2022-05-27 12:02:06 -07:00
|
|
|
"fluent-ffmpeg": "^2.1.2",
|
2024-01-15 06:27:59 -07:00
|
|
|
"geo-tz": "^8.0.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"handlebars": "^4.7.8",
|
|
|
|
"i18n-iso-countries": "^7.6.0",
|
|
|
|
"ioredis": "^5.3.2",
|
|
|
|
"joi": "^17.10.0",
|
2024-03-12 08:29:49 -07:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"lodash": "^4.17.21",
|
2023-08-28 12:41:57 -07:00
|
|
|
"luxon": "^3.4.2",
|
|
|
|
"nest-commander": "^3.11.1",
|
2024-04-15 16:39:06 -07:00
|
|
|
"nestjs-cls": "^4.3.0",
|
2024-05-13 05:23:12 -07:00
|
|
|
"nestjs-otel": "^6.0.0",
|
2024-05-02 07:43:18 -07:00
|
|
|
"nodemailer": "^6.9.13",
|
2023-08-28 12:41:57 -07:00
|
|
|
"openid-client": "^5.4.3",
|
|
|
|
"pg": "^8.11.3",
|
2024-08-28 16:51:25 -07:00
|
|
|
"picomatch": "^4.0.2",
|
2024-08-28 09:00:10 -07:00
|
|
|
"react": "^18.3.1",
|
2024-08-28 05:52:24 -07:00
|
|
|
"react-email": "^3.0.0",
|
2024-04-15 16:02:49 -07:00
|
|
|
"reflect-metadata": "^0.2.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"rxjs": "^7.8.1",
|
2022-09-18 13:16:53 -07:00
|
|
|
"sanitize-filename": "^1.6.3",
|
2024-05-20 17:31:36 -07:00
|
|
|
"semver": "^7.6.2",
|
2023-12-08 09:52:43 -07:00
|
|
|
"sharp": "^0.33.0",
|
2024-03-08 19:15:38 -07:00
|
|
|
"sirv": "^2.0.4",
|
2024-07-26 13:41:11 -07:00
|
|
|
"tailwindcss-preset-email": "^1.3.2",
|
2023-06-17 20:22:31 -07:00
|
|
|
"thumbhash": "^0.1.1",
|
2023-08-28 12:41:57 -07:00
|
|
|
"typeorm": "^0.3.17",
|
2024-07-27 12:50:35 -07:00
|
|
|
"ua-parser-js": "^1.0.35"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-05 13:13:16 -07:00
|
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
|
|
"@eslint/js": "^9.8.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@nestjs/cli": "^10.1.16",
|
|
|
|
"@nestjs/schematics": "^10.0.2",
|
|
|
|
"@nestjs/testing": "^10.2.2",
|
2024-04-16 07:44:45 -07:00
|
|
|
"@swc/core": "^1.4.14",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@testcontainers/postgresql": "^10.2.1",
|
2023-11-19 08:29:51 -07:00
|
|
|
"@types/archiver": "^6.0.0",
|
2023-12-08 09:15:46 -07:00
|
|
|
"@types/async-lock": "^1.4.2",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/bcrypt": "^5.0.0",
|
2022-07-18 12:14:25 -07:00
|
|
|
"@types/cookie-parser": "^1.4.3",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@types/express": "^4.17.17",
|
|
|
|
"@types/fluent-ffmpeg": "^2.1.21",
|
2024-03-12 08:29:49 -07:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@types/lodash": "^4.14.197",
|
2023-09-20 04:16:33 -07:00
|
|
|
"@types/mock-fs": "^4.13.1",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/multer": "^1.4.7",
|
2024-10-07 19:05:31 -07:00
|
|
|
"@types/node": "^20.16.10",
|
2024-05-02 07:43:18 -07:00
|
|
|
"@types/nodemailer": "^6.4.14",
|
2024-07-26 14:29:25 -07:00
|
|
|
"@types/picomatch": "^3.0.0",
|
2024-08-28 09:00:10 -07:00
|
|
|
"@types/react": "^18.3.4",
|
2024-05-20 20:03:28 -07:00
|
|
|
"@types/semver": "^7.5.8",
|
2024-05-02 07:43:18 -07:00
|
|
|
"@types/supertest": "^6.0.0",
|
2023-04-25 19:19:23 -07:00
|
|
|
"@types/ua-parser-js": "^0.7.36",
|
2024-08-05 12:13:00 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
|
|
"@typescript-eslint/parser": "^8.0.0",
|
2024-07-31 08:26:35 -07:00
|
|
|
"@vitest/coverage-v8": "^2.0.5",
|
2024-08-05 13:13:16 -07:00
|
|
|
"eslint": "^9.0.0",
|
2024-02-01 20:18:00 -07:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2024-07-31 05:49:35 -07:00
|
|
|
"eslint-plugin-unicorn": "^55.0.0",
|
2024-08-05 13:13:16 -07:00
|
|
|
"globals": "^15.9.0",
|
2023-09-20 04:16:33 -07:00
|
|
|
"mock-fs": "^5.2.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"prettier": "^3.0.2",
|
2024-07-07 19:17:06 -07:00
|
|
|
"prettier-plugin-organize-imports": "^4.0.0",
|
2024-07-13 18:45:45 -07:00
|
|
|
"rimraf": "^6.0.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"source-map-support": "^0.5.21",
|
2023-12-14 22:28:05 -07:00
|
|
|
"sql-formatter": "^15.0.0",
|
2023-08-28 12:41:57 -07:00
|
|
|
"tsconfig-paths": "^4.2.0",
|
2024-02-01 20:18:00 -07:00
|
|
|
"typescript": "^5.3.3",
|
2024-04-16 07:44:45 -07:00
|
|
|
"unplugin-swc": "^1.4.5",
|
|
|
|
"utimes": "^5.2.1",
|
2024-08-13 05:40:22 -07:00
|
|
|
"vite-tsconfig-paths": "^5.0.0",
|
2024-07-31 08:26:35 -07:00
|
|
|
"vitest": "^2.0.5"
|
2024-01-27 11:52:14 -07:00
|
|
|
},
|
|
|
|
"volta": {
|
2024-10-07 19:42:33 -07:00
|
|
|
"node": "20.18.0"
|
2022-02-03 09:06:44 -07:00
|
|
|
}
|
2023-04-25 19:19:23 -07:00
|
|
|
}
|