2022-02-03 09:06:44 -07:00
|
|
|
{
|
|
|
|
"name": "immich",
|
2022-04-04 07:08:53 -07:00
|
|
|
"version": "1.5.1",
|
2022-02-03 09:06:44 -07:00
|
|
|
"description": "",
|
|
|
|
"author": "",
|
|
|
|
"private": true,
|
|
|
|
"license": "UNLICENSED",
|
2022-11-05 09:28:40 -07:00
|
|
|
"bin": {
|
|
|
|
"immich": "./bin/cli.sh"
|
|
|
|
},
|
2022-02-03 09:06:44 -07:00
|
|
|
"scripts": {
|
|
|
|
"prebuild": "rimraf dist",
|
2022-11-05 09:28:40 -07:00
|
|
|
"build": "nest build immich && nest build microservices && nest build cli",
|
2023-01-12 07:44:11 -07:00
|
|
|
"format": "prettier --check .",
|
|
|
|
"format:fix": "prettier --write .",
|
2022-02-03 09:06:44 -07:00
|
|
|
"start": "nest start",
|
2022-11-14 21:39:32 -07:00
|
|
|
"nest": "nest",
|
2022-02-03 09:06:44 -07:00
|
|
|
"start:dev": "nest start --watch",
|
2022-10-28 18:35:14 -07:00
|
|
|
"start:debug": "nest start --debug 0.0.0.0:9230 --watch",
|
2022-02-03 09:06:44 -07:00
|
|
|
"start:prod": "node dist/main",
|
2022-06-25 10:53:06 -07:00
|
|
|
"lint": "eslint \"{apps,libs}/**/*.ts\" --max-warnings 0",
|
|
|
|
"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",
|
2022-06-11 14:12:06 -07:00
|
|
|
"test:e2e": "jest --config ./apps/immich/test/jest-e2e.json",
|
2022-07-08 19:26:50 -07:00
|
|
|
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
|
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",
|
|
|
|
"api:generate": "bash ./bin/generate-open-api.sh"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-12 15:07:27 -07:00
|
|
|
"@nestjs/bull": "^0.6.2",
|
|
|
|
"@nestjs/common": "^9.2.1",
|
|
|
|
"@nestjs/config": "^2.2.0",
|
|
|
|
"@nestjs/core": "^9.2.1",
|
|
|
|
"@nestjs/jwt": "^10.0.1",
|
|
|
|
"@nestjs/mapped-types": "1.2.0",
|
|
|
|
"@nestjs/passport": "^9.0.0",
|
|
|
|
"@nestjs/platform-express": "^9.2.1",
|
|
|
|
"@nestjs/platform-socket.io": "^9.2.1",
|
|
|
|
"@nestjs/schedule": "^2.1.0",
|
|
|
|
"@nestjs/swagger": "^6.1.4",
|
|
|
|
"@nestjs/typeorm": "^9.0.1",
|
|
|
|
"@nestjs/websockets": "^9.2.1",
|
|
|
|
"@socket.io/redis-adapter": "^8.0.1",
|
2022-10-30 10:38:04 -07:00
|
|
|
"archiver": "^5.3.1",
|
2022-02-19 21:42:10 -07:00
|
|
|
"axios": "^0.26.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"bcrypt": "^5.0.1",
|
2023-01-12 15:07:27 -07:00
|
|
|
"bull": "^4.10.2",
|
2022-02-03 09:06:44 -07:00
|
|
|
"class-transformer": "^0.5.1",
|
|
|
|
"class-validator": "^0.13.2",
|
2022-07-18 12:14:25 -07:00
|
|
|
"cookie-parser": "^1.4.6",
|
2022-03-23 12:53:45 -07:00
|
|
|
"diskusage": "^1.1.3",
|
2022-02-03 09:06:44 -07:00
|
|
|
"dotenv": "^14.2.0",
|
2022-02-10 19:40:11 -07:00
|
|
|
"exifr": "^7.1.3",
|
2022-11-15 23:11:16 -07:00
|
|
|
"fdir": "^5.3.0",
|
2022-05-27 12:02:06 -07:00
|
|
|
"fluent-ffmpeg": "^2.1.2",
|
2022-09-22 13:58:17 -07:00
|
|
|
"geo-tz": "^7.0.2",
|
2022-12-16 13:26:12 -07:00
|
|
|
"handlebars": "^4.7.7",
|
2022-09-22 19:50:05 -07:00
|
|
|
"i18n-iso-countries": "^7.5.0",
|
2023-01-12 15:07:27 -07:00
|
|
|
"ioredis": "^5.2.4",
|
2022-12-23 13:08:50 -07:00
|
|
|
"jest-when": "^3.5.2",
|
2022-02-03 09:06:44 -07:00
|
|
|
"joi": "^17.5.0",
|
2023-01-12 15:07:27 -07:00
|
|
|
"local-reverse-geocoder": "0.12.5",
|
2022-02-03 09:06:44 -07:00
|
|
|
"lodash": "^4.17.21",
|
2022-09-22 13:58:17 -07:00
|
|
|
"luxon": "^3.0.3",
|
2022-12-16 13:26:12 -07:00
|
|
|
"mv": "^2.1.1",
|
2022-11-05 09:28:40 -07:00
|
|
|
"nest-commander": "^3.3.0",
|
2022-11-15 23:11:16 -07:00
|
|
|
"openid-client": "^5.2.1",
|
2022-09-18 13:16:53 -07:00
|
|
|
"passport": "^0.6.0",
|
2023-01-09 13:16:08 -07:00
|
|
|
"passport-custom": "^1.1.1",
|
2023-01-02 13:22:33 -07:00
|
|
|
"passport-http-header-strategy": "^1.1.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"passport-jwt": "^4.0.0",
|
2023-01-12 15:07:27 -07:00
|
|
|
"pg": "^8.8.0",
|
|
|
|
"redis": "^4.5.1",
|
2022-02-03 09:06:44 -07:00
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"rxjs": "^7.2.0",
|
2022-09-18 13:16:53 -07:00
|
|
|
"sanitize-filename": "^1.6.3",
|
2022-05-22 08:15:38 -07:00
|
|
|
"sharp": "^0.28.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"systeminformation": "^5.11.0",
|
2023-01-12 15:07:27 -07:00
|
|
|
"typeorm": "^0.3.11"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-12 15:07:27 -07:00
|
|
|
"@nestjs/cli": "^9.1.8",
|
|
|
|
"@nestjs/schematics": "^9.0.4",
|
|
|
|
"@nestjs/testing": "^9.2.1",
|
2022-07-18 12:14:25 -07:00
|
|
|
"@openapitools/openapi-generator-cli": "2.5.1",
|
2022-10-30 10:38:04 -07:00
|
|
|
"@types/archiver": "^5.3.1",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/bcrypt": "^5.0.0",
|
2022-10-06 09:25:54 -07:00
|
|
|
"@types/bull": "^3.15.9",
|
2022-07-18 12:14:25 -07:00
|
|
|
"@types/cookie-parser": "^1.4.3",
|
2022-05-22 04:56:36 -07:00
|
|
|
"@types/cron": "^2.0.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/express": "^4.17.13",
|
2022-06-19 06:16:35 -07:00
|
|
|
"@types/fluent-ffmpeg": "^2.1.20",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/imagemin": "^8.0.0",
|
|
|
|
"@types/jest": "27.0.2",
|
2022-12-23 13:08:50 -07:00
|
|
|
"@types/jest-when": "^3.5.2",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/lodash": "^4.14.178",
|
|
|
|
"@types/multer": "^1.4.7",
|
2022-12-16 13:26:12 -07:00
|
|
|
"@types/mv": "^2.1.2",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/node": "^16.0.0",
|
|
|
|
"@types/passport-jwt": "^3.0.6",
|
2022-05-22 04:56:36 -07:00
|
|
|
"@types/sharp": "^0.30.2",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@types/supertest": "^2.0.11",
|
2023-01-12 15:07:27 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
|
|
"eslint": "^8.31.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
"jest": "^27.2.5",
|
|
|
|
"prettier": "^2.3.2",
|
|
|
|
"source-map-support": "^0.5.20",
|
|
|
|
"supertest": "^6.1.3",
|
|
|
|
"ts-jest": "^27.0.3",
|
|
|
|
"ts-loader": "^9.2.3",
|
|
|
|
"ts-node": "^10.0.0",
|
|
|
|
"tsconfig-paths": "^3.10.1",
|
2023-01-12 15:07:27 -07:00
|
|
|
"typescript": "^4.9.4"
|
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": {
|
|
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
|
|
},
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"**/*.(t|j)s"
|
|
|
|
],
|
2022-06-11 14:12:06 -07:00
|
|
|
"coverageDirectory": "./coverage",
|
2023-01-12 15:07:57 -07:00
|
|
|
"coverageThreshold": {
|
|
|
|
"global": {
|
|
|
|
"lines": 20,
|
|
|
|
"statements": 20
|
|
|
|
},
|
|
|
|
"./libs/domain/": {
|
|
|
|
"branches": 60,
|
|
|
|
"functions": 80,
|
|
|
|
"lines": 80,
|
|
|
|
"statements": 80
|
|
|
|
}
|
|
|
|
},
|
2022-06-11 14:12:06 -07:00
|
|
|
"testEnvironment": "node",
|
|
|
|
"roots": [
|
|
|
|
"<rootDir>/apps/",
|
|
|
|
"<rootDir>/libs/"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
2022-09-12 21:35:44 -07:00
|
|
|
"@app/common": "<rootDir>/libs/common/src",
|
2022-11-14 21:39:32 -07:00
|
|
|
"^@app/job(|/.*)$": "<rootDir>/libs/job/src/$1",
|
2022-12-23 13:08:50 -07:00
|
|
|
"@app/job": "<rootDir>/libs/job/src",
|
2022-12-16 13:26:12 -07:00
|
|
|
"^@app/immich-config(|/.*)$": "<rootDir>/libs/immich-config/src/$1",
|
2023-01-11 19:34:36 -07:00
|
|
|
"^@app/storage(|/.*)$": "<rootDir>/libs/storage/src/$1",
|
|
|
|
"^@app/infra(|/.*)$": "<rootDir>/libs/infra/src/$1",
|
|
|
|
"^@app/domain(|/.*)$": "<rootDir>/libs/domain/src/$1"
|
2022-06-11 14:12:06 -07:00
|
|
|
}
|
2022-02-03 09:06:44 -07:00
|
|
|
}
|
2022-11-15 23:11:16 -07:00
|
|
|
}
|