2022-05-21 02:23:55 -05:00
|
|
|
{
|
2023-07-15 20:13:04 -05:00
|
|
|
"name": "immich-web",
|
2025-10-14 16:24:43 +00:00
|
|
|
"version": "2.1.0",
|
2024-02-12 09:31:59 -06:00
|
|
|
"license": "GNU Affero General Public License version 3",
|
2025-03-27 21:04:31 -07:00
|
|
|
"type": "module",
|
2023-07-15 20:13:04 -05:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite dev --host 0.0.0.0 --port 3000",
|
|
|
|
|
"build": "vite build",
|
2024-04-27 02:36:30 +07:00
|
|
|
"build:stats": "BUILD_STATS=true vite build",
|
2023-07-15 20:13:04 -05:00
|
|
|
"package": "svelte-kit package",
|
|
|
|
|
"preview": "vite preview",
|
2025-09-17 00:06:27 -04:00
|
|
|
"check:svelte": "svelte-check --no-tsconfig --fail-on-warnings",
|
2023-07-15 20:13:04 -05:00
|
|
|
"check:typescript": "tsc --noEmit",
|
|
|
|
|
"check:watch": "npm run check:svelte -- --watch",
|
2025-04-29 13:34:36 -04:00
|
|
|
"check:code": "npm run format && npm run lint:p && npm run check:svelte && npm run check:typescript",
|
2023-07-15 20:13:04 -05:00
|
|
|
"check:all": "npm run check:code && npm run test:cov",
|
2025-10-06 12:41:28 -04:00
|
|
|
"lint": "eslint . --max-warnings 0 --concurrency 4",
|
2023-07-15 20:13:04 -05:00
|
|
|
"lint:fix": "npm run lint -- --fix",
|
2023-08-03 16:26:48 -05:00
|
|
|
"format": "prettier --check .",
|
2025-05-15 17:55:16 -04:00
|
|
|
"format:fix": "prettier --write . && npm run format:i18n",
|
2025-10-17 05:20:50 -05:00
|
|
|
"format:i18n": "pnpm dlx sort-json ../i18n/*.json",
|
2024-01-01 10:36:49 -07:00
|
|
|
"test": "vitest --run",
|
|
|
|
|
"test:cov": "vitest --coverage",
|
|
|
|
|
"test:watch": "vitest dev",
|
2023-12-13 18:02:26 +01:00
|
|
|
"prepare": "svelte-kit sync"
|
2023-07-15 20:13:04 -05:00
|
|
|
},
|
2025-03-27 21:04:31 -07:00
|
|
|
"dependencies": {
|
|
|
|
|
"@formatjs/icu-messageformat-parser": "^2.9.8",
|
|
|
|
|
"@immich/sdk": "file:../open-api/typescript-sdk",
|
2025-10-10 00:50:48 +02:00
|
|
|
"@immich/ui": "^0.34.0",
|
2025-03-27 21:04:31 -07:00
|
|
|
"@mapbox/mapbox-gl-rtl-text": "0.2.3",
|
|
|
|
|
"@mdi/js": "^7.4.47",
|
|
|
|
|
"@photo-sphere-viewer/core": "^5.11.5",
|
|
|
|
|
"@photo-sphere-viewer/equirectangular-video-adapter": "^5.11.5",
|
|
|
|
|
"@photo-sphere-viewer/resolution-plugin": "^5.11.5",
|
|
|
|
|
"@photo-sphere-viewer/settings-plugin": "^5.11.5",
|
|
|
|
|
"@photo-sphere-viewer/video-plugin": "^5.11.5",
|
2025-07-11 07:42:25 -04:00
|
|
|
"@types/geojson": "^7946.0.16",
|
2025-07-10 18:56:04 -04:00
|
|
|
"@zoom-image/core": "^0.41.0",
|
2025-03-27 21:04:31 -07:00
|
|
|
"@zoom-image/svelte": "^0.3.0",
|
2025-07-05 10:52:39 +08:00
|
|
|
"async-mutex": "^0.5.0",
|
2025-03-27 21:04:31 -07:00
|
|
|
"dom-to-image": "^2.6.0",
|
|
|
|
|
"fabric": "^6.5.4",
|
2025-07-15 23:32:43 +10:00
|
|
|
"geo-coordinates-parser": "^1.7.4",
|
2025-07-01 22:47:59 -04:00
|
|
|
"geojson": "^0.5.0",
|
2025-03-27 21:04:31 -07:00
|
|
|
"handlebars": "^4.7.8",
|
2025-10-11 13:17:25 +02:00
|
|
|
"happy-dom": "^20.0.0",
|
2025-03-27 21:04:31 -07:00
|
|
|
"intl-messageformat": "^10.7.11",
|
|
|
|
|
"justified-layout": "^4.1.0",
|
|
|
|
|
"lodash-es": "^4.17.21",
|
|
|
|
|
"luxon": "^3.4.4",
|
2025-08-19 05:55:24 -07:00
|
|
|
"maplibre-gl": "^5.6.2",
|
2025-03-27 21:04:31 -07:00
|
|
|
"pmtiles": "^4.3.0",
|
|
|
|
|
"qrcode": "^1.5.4",
|
2025-09-16 16:33:56 -04:00
|
|
|
"simple-icons": "^15.15.0",
|
2025-03-27 21:04:31 -07:00
|
|
|
"socket.io-client": "~4.8.0",
|
2025-09-22 04:03:06 +02:00
|
|
|
"svelte-gestures": "^5.2.2",
|
2025-03-27 21:04:31 -07:00
|
|
|
"svelte-i18n": "^4.0.1",
|
2025-08-19 05:55:24 -07:00
|
|
|
"svelte-maplibre": "^1.2.0",
|
2025-03-28 12:40:57 -07:00
|
|
|
"svelte-persisted-store": "^0.12.0",
|
2025-05-18 15:51:33 +02:00
|
|
|
"tabbable": "^6.2.0",
|
2025-03-27 21:04:31 -07:00
|
|
|
"thumbhash": "^0.1.1"
|
|
|
|
|
},
|
2023-07-15 20:13:04 -05:00
|
|
|
"devDependencies": {
|
2025-10-06 12:41:28 -04:00
|
|
|
"@eslint/js": "^9.36.0",
|
2025-09-16 21:13:09 +00:00
|
|
|
"@faker-js/faker": "^10.0.0",
|
2025-06-13 15:54:59 +01:00
|
|
|
"@koddsson/eslint-plugin-tscompat": "^0.2.0",
|
2024-02-16 21:43:40 +01:00
|
|
|
"@socket.io/component-emitter": "^3.1.0",
|
2025-01-13 23:40:19 -05:00
|
|
|
"@sveltejs/adapter-static": "^3.0.8",
|
2025-08-19 15:28:43 +01:00
|
|
|
"@sveltejs/enhanced-img": "^0.8.0",
|
2025-08-07 05:00:42 -07:00
|
|
|
"@sveltejs/kit": "^2.27.1",
|
2025-10-10 00:50:48 +02:00
|
|
|
"@sveltejs/vite-plugin-svelte": "6.2.1",
|
2025-05-18 15:51:33 +02:00
|
|
|
"@tailwindcss/vite": "^4.1.7",
|
2024-02-27 11:01:11 -08:00
|
|
|
"@testing-library/jest-dom": "^6.4.2",
|
2025-05-20 22:40:30 +00:00
|
|
|
"@testing-library/svelte": "^5.2.8",
|
2024-05-14 17:35:16 +02:00
|
|
|
"@testing-library/user-event": "^14.5.2",
|
2025-05-20 16:08:23 -05:00
|
|
|
"@types/chromecast-caf-sender": "^1.0.11",
|
2024-02-27 11:01:11 -08:00
|
|
|
"@types/dom-to-image": "^2.6.7",
|
2025-02-25 09:39:56 -06:00
|
|
|
"@types/justified-layout": "^4.1.4",
|
2024-02-27 11:01:11 -08:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
|
|
|
|
"@types/luxon": "^3.4.2",
|
2025-03-03 18:40:41 +00:00
|
|
|
"@types/qrcode": "^1.5.5",
|
2025-01-22 21:18:04 +01:00
|
|
|
"@vitest/coverage-v8": "^3.0.0",
|
2025-07-22 09:31:01 +00:00
|
|
|
"dotenv": "^17.0.0",
|
2025-10-06 12:41:28 -04:00
|
|
|
"eslint": "^9.36.0",
|
2025-07-29 12:23:52 +01:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2025-06-13 15:54:59 +01:00
|
|
|
"eslint-plugin-compat": "^6.0.2",
|
2025-10-06 12:41:28 -04:00
|
|
|
"eslint-plugin-svelte": "^3.12.4",
|
|
|
|
|
"eslint-plugin-unicorn": "^61.0.2",
|
2024-02-27 11:01:11 -08:00
|
|
|
"factory.ts": "^1.4.1",
|
2025-03-03 14:11:44 +00:00
|
|
|
"globals": "^16.0.0",
|
2025-10-11 13:17:25 +02:00
|
|
|
"happy-dom": "^20.0.0",
|
2025-01-13 23:40:19 -05:00
|
|
|
"prettier": "^3.4.2",
|
2024-07-07 22:17:06 -04:00
|
|
|
"prettier-plugin-organize-imports": "^4.0.0",
|
2025-01-13 23:40:19 -05:00
|
|
|
"prettier-plugin-sort-json": "^4.1.1",
|
|
|
|
|
"prettier-plugin-svelte": "^3.3.3",
|
2025-06-09 17:19:50 +01:00
|
|
|
"rollup-plugin-visualizer": "^6.0.0",
|
2025-10-10 00:50:48 +02:00
|
|
|
"svelte": "5.39.11",
|
2025-03-18 10:14:46 -04:00
|
|
|
"svelte-check": "^4.1.5",
|
2025-10-06 12:41:28 -04:00
|
|
|
"svelte-eslint-parser": "^1.3.3",
|
2025-05-18 15:51:33 +02:00
|
|
|
"tailwindcss": "^4.1.7",
|
2025-08-19 15:28:43 +01:00
|
|
|
"typescript": "^5.8.3",
|
2025-10-06 12:41:28 -04:00
|
|
|
"typescript-eslint": "^8.45.0",
|
2025-08-19 15:28:43 +01:00
|
|
|
"vite": "^7.1.2",
|
2025-01-22 21:18:04 +01:00
|
|
|
"vitest": "^3.0.0"
|
2023-07-15 20:13:04 -05:00
|
|
|
},
|
2024-05-01 14:05:18 +01:00
|
|
|
"volta": {
|
2025-10-02 09:17:40 +00:00
|
|
|
"node": "22.20.0"
|
2023-07-15 20:13:04 -05:00
|
|
|
}
|
2022-05-21 02:23:55 -05:00
|
|
|
}
|