2022-02-03 09:06:44 -07:00
|
|
|
{
|
|
|
|
"name": "immich",
|
2023-11-21 08:07:50 -07:00
|
|
|
"version": "1.88.1",
|
2022-02-03 09:06:44 -07:00
|
|
|
"description": "",
|
|
|
|
"author": "",
|
|
|
|
"private": true,
|
|
|
|
"license": "UNLICENSED",
|
2022-11-05 09:28:40 -07:00
|
|
|
"bin": {
|
2023-06-29 12:48:16 -07:00
|
|
|
"immich": "./bin/cli.sh",
|
2023-08-27 07:35:49 -07:00
|
|
|
"immich-admin": "./bin/admin-cli.sh"
|
2022-11-05 09:28:40 -07:00
|
|
|
},
|
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",
|
2022-02-03 09:06:44 -07:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
"test:cov": "jest --coverage",
|
|
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
2023-11-14 15:32:58 -07:00
|
|
|
"test:e2e": "NODE_OPTIONS='--experimental-vm-modules' jest --config test/e2e/jest-e2e.json --runInBand",
|
2023-10-05 09:35:58 -07:00
|
|
|
"typeorm": "typeorm",
|
|
|
|
"typeorm:migrations:create": "typeorm migration:create",
|
|
|
|
"typeorm:migrations:generate": "typeorm migration:generate -d ./dist/infra/database.config.js",
|
|
|
|
"typeorm:migrations:run": "typeorm migration:run -d ./dist/infra/database.config.js",
|
|
|
|
"typeorm:migrations:revert": "typeorm migration:revert -d ./dist/infra/database.config.js",
|
|
|
|
"typeorm:schema:drop": "typeorm schema:drop -d ./dist/infra/database.config.js",
|
2023-02-18 13:58:55 -07:00
|
|
|
"typeorm:schema:reset": "npm run typeorm:schema:drop && npm run typeorm:migrations:run",
|
2023-01-09 21:08:45 -07:00
|
|
|
"api:typescript": "bash ./bin/generate-open-api.sh web",
|
|
|
|
"api:dart": "bash ./bin/generate-open-api.sh mobile",
|
2023-04-28 19:10:32 -07:00
|
|
|
"api:generate": "node ./bin/sync-spec-version.js && bash ./bin/generate-open-api.sh"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-28 12:41:57 -07:00
|
|
|
"@babel/runtime": "^7.22.11",
|
|
|
|
"@nestjs/bullmq": "^10.0.1",
|
|
|
|
"@nestjs/common": "^10.2.2",
|
|
|
|
"@nestjs/config": "^3.0.0",
|
|
|
|
"@nestjs/core": "^10.2.2",
|
|
|
|
"@nestjs/platform-express": "^10.2.2",
|
|
|
|
"@nestjs/platform-socket.io": "^10.2.2",
|
|
|
|
"@nestjs/schedule": "^3.0.3",
|
|
|
|
"@nestjs/swagger": "^7.1.8",
|
|
|
|
"@nestjs/typeorm": "^10.0.0",
|
|
|
|
"@nestjs/websockets": "^10.2.2",
|
|
|
|
"@socket.io/redis-adapter": "^8.2.1",
|
|
|
|
"archiver": "^6.0.0",
|
|
|
|
"axios": "^1.5.0",
|
|
|
|
"bcrypt": "^5.1.1",
|
|
|
|
"bullmq": "^4.8.0",
|
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",
|
2023-10-02 05:54:43 -07:00
|
|
|
"exiftool-vendored": "~23.1.0",
|
|
|
|
"exiftool-vendored.pl": "12.67",
|
2022-05-27 12:02:06 -07:00
|
|
|
"fluent-ffmpeg": "^2.1.2",
|
2023-09-18 06:06:03 -07:00
|
|
|
"geo-tz": "^7.0.7",
|
2023-09-27 13:32:58 -07:00
|
|
|
"glob": "^10.3.3",
|
2023-08-28 12:41:57 -07:00
|
|
|
"handlebars": "^4.7.8",
|
|
|
|
"i18n-iso-countries": "^7.6.0",
|
2023-11-20 10:23:28 -07:00
|
|
|
"@immich/cli": "^2.0.3",
|
2023-08-28 12:41:57 -07:00
|
|
|
"ioredis": "^5.3.2",
|
|
|
|
"joi": "^17.10.0",
|
|
|
|
"local-reverse-geocoder": "0.16.5",
|
2022-02-03 09:06:44 -07:00
|
|
|
"lodash": "^4.17.21",
|
2023-08-28 12:41:57 -07:00
|
|
|
"luxon": "^3.4.2",
|
2022-12-16 13:26:12 -07:00
|
|
|
"mv": "^2.1.1",
|
2023-08-28 12:41:57 -07:00
|
|
|
"nest-commander": "^3.11.1",
|
|
|
|
"openid-client": "^5.4.3",
|
|
|
|
"pg": "^8.11.3",
|
2022-02-03 09:06:44 -07:00
|
|
|
"reflect-metadata": "^0.1.13",
|
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",
|
2023-09-19 12:11:25 -07:00
|
|
|
"sharp": "^0.32.6",
|
2023-06-17 20:22:31 -07:00
|
|
|
"thumbhash": "^0.1.1",
|
2023-08-28 12:41:57 -07:00
|
|
|
"typeorm": "^0.3.17",
|
|
|
|
"typesense": "^1.7.1",
|
2023-07-10 10:56:45 -07:00
|
|
|
"ua-parser-js": "^1.0.35"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-28 12:41:57 -07:00
|
|
|
"@nestjs/cli": "^10.1.16",
|
|
|
|
"@nestjs/schematics": "^10.0.2",
|
|
|
|
"@nestjs/testing": "^10.2.2",
|
|
|
|
"@openapitools/openapi-generator-cli": "2.7.0",
|
|
|
|
"@testcontainers/postgresql": "^10.2.1",
|
2023-11-19 08:29:51 -07:00
|
|
|
"@types/archiver": "^6.0.0",
|
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/cron": "^2.0.1",
|
|
|
|
"@types/express": "^4.17.17",
|
|
|
|
"@types/fluent-ffmpeg": "^2.1.21",
|
|
|
|
"@types/imagemin": "^8.0.1",
|
2023-11-12 20:54:25 -07:00
|
|
|
"@types/jest": "29.5.8",
|
2022-12-23 13:08:50 -07:00
|
|
|
"@types/jest-when": "^3.5.2",
|
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",
|
2022-12-16 13:26:12 -07:00
|
|
|
"@types/mv": "^2.1.2",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@types/node": "^20.5.7",
|
|
|
|
"@types/sharp": "^0.31.1",
|
|
|
|
"@types/supertest": "^2.0.12",
|
2023-04-25 19:19:23 -07:00
|
|
|
"@types/ua-parser-js": "^0.7.36",
|
2023-08-28 12:41:57 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
|
|
"@typescript-eslint/parser": "^6.4.1",
|
|
|
|
"dotenv": "^16.3.1",
|
|
|
|
"eslint": "^8.48.0",
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
|
|
"jest": "^29.6.4",
|
|
|
|
"jest-when": "^3.6.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",
|
|
|
|
"prettier-plugin-organize-imports": "^3.2.3",
|
|
|
|
"rimraf": "^5.0.1",
|
|
|
|
"source-map-support": "^0.5.21",
|
|
|
|
"supertest": "^6.3.3",
|
|
|
|
"testcontainers": "^10.2.1",
|
|
|
|
"ts-jest": "^29.1.1",
|
|
|
|
"ts-loader": "^9.4.4",
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"tsconfig-paths": "^4.2.0",
|
2023-10-06 14:32:28 -07:00
|
|
|
"typescript": "^5.2.2",
|
|
|
|
"utimes": "^5.2.1"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"jest": {
|
2022-06-18 08:56:36 -07:00
|
|
|
"clearMocks": true,
|
2022-02-03 09:06:44 -07:00
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"ts"
|
|
|
|
],
|
2022-06-11 14:12:06 -07:00
|
|
|
"rootDir": ".",
|
2022-02-03 09:06:44 -07:00
|
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
|
|
"transform": {
|
2023-03-21 19:49:19 -07:00
|
|
|
"^.+\\.ts$": "ts-jest"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"collectCoverageFrom": [
|
2023-06-09 13:20:15 -07:00
|
|
|
"<rootDir>/src/**/*.(t|j)s",
|
2023-06-30 21:47:28 -07:00
|
|
|
"!<rootDir>/src/infra/**/*",
|
|
|
|
"!<rootDir>/src/immich/controllers/**/*"
|
2022-02-03 09:06:44 -07:00
|
|
|
],
|
2022-06-11 14:12:06 -07:00
|
|
|
"coverageDirectory": "./coverage",
|
2023-01-12 15:07:57 -07:00
|
|
|
"coverageThreshold": {
|
2023-06-08 08:01:07 -07:00
|
|
|
"./src/domain/": {
|
2023-09-29 14:25:45 -07:00
|
|
|
"branches": 80,
|
2023-06-01 03:32:51 -07:00
|
|
|
"functions": 80,
|
|
|
|
"lines": 90,
|
|
|
|
"statements": 90
|
2023-01-12 15:07:57 -07:00
|
|
|
}
|
|
|
|
},
|
2023-02-25 07:12:03 -07:00
|
|
|
"setupFilesAfterEnv": [
|
2023-06-08 08:01:07 -07:00
|
|
|
"<rootDir>/test/setup.ts"
|
2023-02-25 07:12:03 -07:00
|
|
|
],
|
2022-06-11 14:12:06 -07:00
|
|
|
"testEnvironment": "node",
|
|
|
|
"moduleNameMapper": {
|
2023-06-08 08:01:07 -07:00
|
|
|
"^@test(|/.*)$": "<rootDir>/test/$1",
|
|
|
|
"^@app/immich(|/.*)$": "<rootDir>/src/immich/$1",
|
|
|
|
"^@app/infra(|/.*)$": "<rootDir>/src/infra/$1",
|
|
|
|
"^@app/domain(|/.*)$": "<rootDir>/src/domain/$1"
|
2023-03-16 07:02:40 -07:00
|
|
|
},
|
2023-06-08 08:01:07 -07:00
|
|
|
"globalSetup": "<rootDir>/test/global-setup.js"
|
2022-02-03 09:06:44 -07:00
|
|
|
}
|
2023-04-25 19:19:23 -07:00
|
|
|
}
|