mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
a1bc74cdd6
* fix(deps): update exiftool * documenting such changes would have been too easy --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
167 lines
5.4 KiB
JSON
167 lines
5.4 KiB
JSON
{
|
|
"name": "immich",
|
|
"version": "1.95.1",
|
|
"description": "",
|
|
"author": "",
|
|
"private": true,
|
|
"license": "GNU Affero General Public License version 3",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"format": "prettier --check .",
|
|
"format:fix": "prettier --write .",
|
|
"start": "npm run start:dev",
|
|
"nest": "nest",
|
|
"start:dev": "nest start --watch --",
|
|
"start:debug": "nest start --debug 0.0.0.0:9230 --watch --",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --max-warnings 0",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"check": "tsc --noEmit",
|
|
"check:code": "npm run format && npm run lint && npm run check",
|
|
"check:all": "npm run check:code && npm run test:cov",
|
|
"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",
|
|
"e2e:jobs": "jest --config e2e/jobs/jest-e2e.json --runInBand",
|
|
"e2e:api": "jest --config e2e/api/jest-e2e.json --runInBand",
|
|
"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 query -d ./dist/infra/database.config.js 'DROP schema public cascade; CREATE schema public;'",
|
|
"typeorm:schema:reset": "npm run typeorm:schema:drop && npm run typeorm:migrations:run",
|
|
"sql:generate": "node ./dist/infra/sql-generator/"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.22.11",
|
|
"@immich/cli": "^2.0.7",
|
|
"@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": "^4.0.0",
|
|
"@nestjs/swagger": "^7.1.8",
|
|
"@nestjs/typeorm": "^10.0.0",
|
|
"@nestjs/websockets": "^10.2.2",
|
|
"@socket.io/postgres-adapter": "^0.3.1",
|
|
"@types/picomatch": "^2.3.3",
|
|
"archiver": "^6.0.0",
|
|
"async-lock": "^1.4.0",
|
|
"bcrypt": "^5.1.1",
|
|
"bullmq": "^4.8.0",
|
|
"chokidar": "^3.5.3",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"cookie-parser": "^1.4.6",
|
|
"exiftool-vendored": "~24.5.0",
|
|
"exiftool-vendored.pl": "12.76",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"geo-tz": "^8.0.0",
|
|
"glob": "^10.3.3",
|
|
"handlebars": "^4.7.8",
|
|
"i18n-iso-countries": "^7.6.0",
|
|
"ioredis": "^5.3.2",
|
|
"joi": "^17.10.0",
|
|
"lodash": "^4.17.21",
|
|
"luxon": "^3.4.2",
|
|
"nest-commander": "^3.11.1",
|
|
"node-addon-api": "^7.0.0",
|
|
"openid-client": "^5.4.3",
|
|
"pg": "^8.11.3",
|
|
"picomatch": "^4.0.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rxjs": "^7.8.1",
|
|
"sanitize-filename": "^1.6.3",
|
|
"sharp": "^0.33.0",
|
|
"thumbhash": "^0.1.1",
|
|
"typeorm": "^0.3.17",
|
|
"ua-parser-js": "^1.0.35"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^10.1.16",
|
|
"@nestjs/schematics": "^10.0.2",
|
|
"@nestjs/testing": "^10.2.2",
|
|
"@testcontainers/postgresql": "^10.2.1",
|
|
"@types/archiver": "^6.0.0",
|
|
"@types/async-lock": "^1.4.2",
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/cookie-parser": "^1.4.3",
|
|
"@types/express": "^4.17.17",
|
|
"@types/fluent-ffmpeg": "^2.1.21",
|
|
"@types/imagemin": "^8.0.1",
|
|
"@types/jest": "29.5.12",
|
|
"@types/jest-when": "^3.5.2",
|
|
"@types/lodash": "^4.14.197",
|
|
"@types/mock-fs": "^4.13.1",
|
|
"@types/multer": "^1.4.7",
|
|
"@types/node": "^20.5.7",
|
|
"@types/sharp": "^0.31.1",
|
|
"@types/supertest": "^6.0.0",
|
|
"@types/ua-parser-js": "^0.7.36",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
"@typescript-eslint/parser": "^7.0.0",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-unicorn": "^51.0.0",
|
|
"jest": "^29.6.4",
|
|
"jest-when": "^3.6.0",
|
|
"mock-fs": "^5.2.0",
|
|
"prettier": "^3.0.2",
|
|
"prettier-plugin-organize-imports": "^3.2.3",
|
|
"rimraf": "^5.0.1",
|
|
"source-map-support": "^0.5.21",
|
|
"sql-formatter": "^15.0.0",
|
|
"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",
|
|
"typescript": "^5.3.3",
|
|
"utimes": "^5.2.1"
|
|
},
|
|
"jest": {
|
|
"clearMocks": true,
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": ".",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"<rootDir>/src/**/*.(t|j)s",
|
|
"!<rootDir>/src/infra/**/*",
|
|
"!<rootDir>/src/immich/controllers/**/*"
|
|
],
|
|
"coverageDirectory": "./coverage",
|
|
"coverageThreshold": {
|
|
"./src/domain/": {
|
|
"branches": 79,
|
|
"functions": 80,
|
|
"lines": 90,
|
|
"statements": 90
|
|
}
|
|
},
|
|
"testEnvironment": "node",
|
|
"moduleNameMapper": {
|
|
"^@test(|/.*)$": "<rootDir>/test/$1",
|
|
"^@app/immich(|/.*)$": "<rootDir>/src/immich/$1",
|
|
"^@app/infra(|/.*)$": "<rootDir>/src/infra/$1",
|
|
"^@app/domain(|/.*)$": "<rootDir>/src/domain/$1"
|
|
},
|
|
"globalSetup": "<rootDir>/test/global-setup.js"
|
|
},
|
|
"volta": {
|
|
"node": "20.11.1"
|
|
}
|
|
}
|