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",
|
2022-06-11 14:12:06 -07:00
|
|
|
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
|
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",
|
|
|
|
"check:types": "tsc --noEmit",
|
|
|
|
"check:all": "npm run lint && npm run check:types && npm run test",
|
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",
|
2022-07-13 05:23:48 -07:00
|
|
|
"api:typescript": "rm -rf ../web/src/api/open-api && npx openapi-generator-cli generate -g typescript-axios -i ./immich-openapi-specs.json -o ../web/src/api/open-api",
|
2022-12-06 15:10:04 -07:00
|
|
|
"api:dart": "rm -rf ../mobile/openapi && npx openapi-generator-cli generate -g dart -i ./immich-openapi-specs.json -o ../mobile/openapi",
|
2022-07-13 05:23:48 -07:00
|
|
|
"api:generate": "npm run api:typescript && npm run api:dart"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-06-29 11:39:58 -07:00
|
|
|
"@nestjs/bull": "^0.5.5",
|
|
|
|
"@nestjs/common": "^8.4.7",
|
|
|
|
"@nestjs/config": "^2.1.0",
|
|
|
|
"@nestjs/core": "^8.4.7",
|
|
|
|
"@nestjs/jwt": "^8.0.1",
|
2022-02-03 09:06:44 -07:00
|
|
|
"@nestjs/mapped-types": "*",
|
2022-06-29 11:39:58 -07:00
|
|
|
"@nestjs/passport": "^8.2.2",
|
|
|
|
"@nestjs/platform-express": "^8.4.7",
|
|
|
|
"@nestjs/platform-socket.io": "^8.4.7",
|
2022-05-22 04:56:36 -07:00
|
|
|
"@nestjs/schedule": "^2.0.1",
|
2022-07-08 19:26:50 -07:00
|
|
|
"@nestjs/swagger": "^5.2.1",
|
2022-06-29 11:39:58 -07:00
|
|
|
"@nestjs/typeorm": "^8.1.4",
|
|
|
|
"@nestjs/websockets": "^8.4.7",
|
2022-02-14 09:40:41 -07:00
|
|
|
"@socket.io/redis-adapter": "^7.1.0",
|
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",
|
|
|
|
"bull": "^4.4.0",
|
|
|
|
"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",
|
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",
|
2022-10-07 03:14: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-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",
|
|
|
|
"pg": "^8.7.1",
|
2022-02-19 21:42:10 -07:00
|
|
|
"redis": "^3.1.2",
|
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-19 21:42:10 -07:00
|
|
|
"socket.io-redis": "^6.1.1",
|
2022-07-08 19:26:50 -07:00
|
|
|
"swagger-ui-express": "^4.4.0",
|
2022-02-03 09:06:44 -07:00
|
|
|
"systeminformation": "^5.11.0",
|
2022-06-29 11:39:58 -07:00
|
|
|
"typeorm": "^0.3.6"
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-29 11:39:58 -07:00
|
|
|
"@nestjs/cli": "^8.2.8",
|
|
|
|
"@nestjs/schematics": "^8.0.11",
|
|
|
|
"@nestjs/testing": "^8.4.7",
|
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",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
|
|
"eslint": "^8.0.1",
|
|
|
|
"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",
|
|
|
|
"typescript": "^4.3.5"
|
|
|
|
},
|
|
|
|
"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",
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"roots": [
|
|
|
|
"<rootDir>/apps/",
|
|
|
|
"<rootDir>/libs/"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"^@app/database(|/.*)$": "<rootDir>/libs/database/src/$1",
|
|
|
|
"@app/database/config/(.*)": "<rootDir>/libs/database/src/config/$1",
|
2022-07-02 19:06:36 -07:00
|
|
|
"@app/database/config": "<rootDir>/libs/database/src/config",
|
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",
|
|
|
|
"^@app/storage(|/.*)$": "<rootDir>/libs/storage/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
|
|
|
}
|