2018-07-27 17:31:39 +02:00
|
|
|
{
|
|
|
|
"name": "photoprism",
|
|
|
|
"version": "1.0.0",
|
2022-04-13 22:17:59 +02:00
|
|
|
"description": "AI-Powered Photos App",
|
|
|
|
"author": "PhotoPrism UG",
|
2020-07-05 14:48:49 +02:00
|
|
|
"license": "AGPL-3.0",
|
2018-07-27 17:31:39 +02:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2019-06-07 00:04:34 +02:00
|
|
|
"watch": "webpack --watch",
|
2021-07-12 19:25:37 +02:00
|
|
|
"build": "webpack --node-env=production",
|
|
|
|
"trace": "webpack --stats-children",
|
2022-10-17 19:07:38 +02:00
|
|
|
"debug": "webpack --stats-error-details",
|
2019-05-09 06:48:10 +02:00
|
|
|
"lint": "eslint --cache src/ *.js",
|
2020-12-18 14:42:36 +01:00
|
|
|
"fmt": "eslint --cache --fix src/ *.js .eslintrc.js",
|
2019-05-20 20:06:26 +02:00
|
|
|
"test": "karma start",
|
2020-02-04 01:39:53 +01:00
|
|
|
"upgrade": "npm --depth 10 update && npm audit fix",
|
2022-08-31 19:42:18 +02:00
|
|
|
"testcafe": "testcafe",
|
2022-07-14 10:19:04 +02:00
|
|
|
"acceptance-local": "testcafe chromium --selector-timeout 5000 -S -s tests/acceptance/screenshots tests/acceptance",
|
2022-10-31 13:25:02 +01:00
|
|
|
"gettext-extract": "gettext-extract --output src/locales/translations.pot $(find ${SRC:-src} -type f \\( -iname \\*.vue -o -iname \\*.js \\) -not -path src/common/vm.js)",
|
2020-07-15 01:26:54 +02:00
|
|
|
"gettext-compile": "gettext-compile --output src/locales/translations.json src/locales/*.po"
|
2018-07-27 17:31:39 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-02 13:24:53 +01:00
|
|
|
"@babel/cli": "^7.20.7",
|
|
|
|
"@babel/core": "^7.20.7",
|
2022-10-06 18:17:56 +02:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
2022-08-31 19:56:58 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2023-01-02 13:24:53 +01:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
2022-11-05 16:27:34 +01:00
|
|
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
|
|
"@babel/preset-env": "^7.20.2",
|
2022-08-31 19:56:58 +02:00
|
|
|
"@babel/register": "^7.18.9",
|
2023-01-02 13:24:53 +01:00
|
|
|
"@babel/runtime": "^7.20.7",
|
2022-05-27 15:21:41 +02:00
|
|
|
"@lcdp/offline-plugin": "^5.1.1",
|
2023-01-02 13:24:53 +01:00
|
|
|
"@vvo/tzdb": "^6.86.0",
|
2022-10-17 19:51:58 +02:00
|
|
|
"axios": "^0.27.2",
|
2022-08-31 19:56:58 +02:00
|
|
|
"axios-mock-adapter": "^1.21.2",
|
2022-11-05 16:27:34 +01:00
|
|
|
"babel-loader": "^9.1.0",
|
2022-01-16 15:30:15 +01:00
|
|
|
"babel-plugin-istanbul": "^6.1.1",
|
2022-10-06 18:17:56 +02:00
|
|
|
"browserslist": "^4.21.4",
|
2023-01-02 13:24:53 +01:00
|
|
|
"chai": "^4.3.7",
|
2022-06-16 18:59:03 +02:00
|
|
|
"cheerio": "1.0.0-rc.10",
|
2020-04-22 17:04:40 +02:00
|
|
|
"chrome-finder": "^1.0.7",
|
2023-01-02 13:24:53 +01:00
|
|
|
"core-js": "^3.27.1",
|
2020-12-04 11:02:33 +01:00
|
|
|
"cross-env": "^7.0.3",
|
2023-01-02 13:24:53 +01:00
|
|
|
"css-loader": "^6.7.3",
|
2022-11-05 16:27:34 +01:00
|
|
|
"cssnano": "^5.1.14",
|
2021-07-17 13:44:00 +02:00
|
|
|
"easygettext": "^2.17.0",
|
2023-01-02 13:24:53 +01:00
|
|
|
"eslint": "^8.31.0",
|
2022-05-27 15:21:41 +02:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-config-standard": "^17.0.0",
|
2021-06-28 12:44:43 +02:00
|
|
|
"eslint-formatter-pretty": "^4.1.0",
|
2022-10-19 05:05:47 +02:00
|
|
|
"eslint-plugin-html": "^7.1.0",
|
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2020-04-02 11:33:02 +02:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2022-10-19 05:05:47 +02:00
|
|
|
"eslint-plugin-prettier-vue": "^4.2.0",
|
2023-01-02 13:24:53 +01:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
|
|
"eslint-plugin-vue": "^9.8.0",
|
2022-10-19 05:05:47 +02:00
|
|
|
"eslint-webpack-plugin": "^3.2.0",
|
2018-07-27 17:31:39 +02:00
|
|
|
"eventsource-polyfill": "^0.9.6",
|
2021-07-12 19:25:37 +02:00
|
|
|
"file-loader": "^6.2.0",
|
2021-05-16 16:06:35 +02:00
|
|
|
"file-saver": "^2.0.5",
|
2023-01-02 13:24:53 +01:00
|
|
|
"hls.js": "^1.2.9",
|
2022-01-20 12:13:33 +01:00
|
|
|
"i": "^0.3.7",
|
2022-10-19 05:05:47 +02:00
|
|
|
"karma": "^6.4.1",
|
2022-05-27 15:21:41 +02:00
|
|
|
"karma-chrome-launcher": "^3.1.1",
|
2020-07-15 02:13:03 +02:00
|
|
|
"karma-coverage-istanbul-reporter": "^3.0.3",
|
2019-05-07 15:41:33 +02:00
|
|
|
"karma-htmlfile-reporter": "^0.3.8",
|
2020-05-01 13:31:17 +02:00
|
|
|
"karma-mocha": "^2.0.1",
|
2022-02-02 18:59:17 +01:00
|
|
|
"karma-verbose-reporter": "^0.0.8",
|
2021-07-12 19:25:37 +02:00
|
|
|
"karma-webpack": "^5.0.0",
|
2023-01-02 13:24:53 +01:00
|
|
|
"luxon": "^3.2.0",
|
2022-08-31 19:56:58 +02:00
|
|
|
"maplibre-gl": "^2.4.0",
|
2022-06-17 04:15:20 +02:00
|
|
|
"memoize-one": "^6.0.0",
|
2023-01-02 13:24:53 +01:00
|
|
|
"mini-css-extract-plugin": "^2.7.2",
|
2020-10-20 12:46:05 +02:00
|
|
|
"minimist": ">=1.2.5",
|
2023-01-02 13:24:53 +01:00
|
|
|
"mocha": "^10.2.0",
|
2020-09-21 01:53:06 +02:00
|
|
|
"node-storage-shim": "^2.0.1",
|
2019-02-11 22:55:29 +01:00
|
|
|
"photoswipe": "^4.1.3",
|
2023-01-02 13:24:53 +01:00
|
|
|
"postcss": "^8.4.20",
|
|
|
|
"postcss-import": "^15.1.0",
|
|
|
|
"postcss-loader": "^7.0.2",
|
|
|
|
"postcss-preset-env": "^7.8.3",
|
2022-01-16 15:30:15 +01:00
|
|
|
"postcss-reporter": "^7.0.5",
|
2021-07-12 19:25:37 +02:00
|
|
|
"postcss-url": "^10.1.3",
|
2023-01-02 13:24:53 +01:00
|
|
|
"prettier": "^2.8.1",
|
2022-01-16 15:30:15 +01:00
|
|
|
"pubsub-js": "^1.9.4",
|
2023-01-02 13:24:53 +01:00
|
|
|
"regenerator-runtime": "^0.13.11",
|
2022-01-18 12:26:33 +01:00
|
|
|
"resolve-url-loader": "^5.0.0",
|
2023-01-02 13:24:53 +01:00
|
|
|
"sass": "^1.57.1",
|
|
|
|
"sass-loader": "^13.2.0",
|
|
|
|
"server": "^1.0.38",
|
2019-11-16 16:06:34 +01:00
|
|
|
"sockette": "^2.0.6",
|
2022-01-16 15:30:15 +01:00
|
|
|
"style-loader": "^3.3.1",
|
2022-10-06 18:17:56 +02:00
|
|
|
"svg-url-loader": "^8.0.0",
|
2023-01-02 13:24:53 +01:00
|
|
|
"tar": "^6.1.13",
|
2021-07-12 19:25:37 +02:00
|
|
|
"url-loader": "^4.1.1",
|
2022-10-19 05:05:47 +02:00
|
|
|
"util": "^0.12.5",
|
2023-01-02 13:24:53 +01:00
|
|
|
"vue": "^2.7.14",
|
2022-11-05 16:27:34 +01:00
|
|
|
"vue-fullscreen": "^2.6.1",
|
2020-12-18 20:43:24 +01:00
|
|
|
"vue-gettext": "^2.1.12",
|
2018-09-18 23:24:19 +02:00
|
|
|
"vue-infinite-scroll": "^2.0.2",
|
2023-01-02 13:24:53 +01:00
|
|
|
"vue-loader": "^15.10.1",
|
2021-07-12 19:25:37 +02:00
|
|
|
"vue-loader-plugin": "^1.3.0",
|
|
|
|
"vue-luxon": "^0.10.0",
|
2022-11-05 16:27:34 +01:00
|
|
|
"vue-router": "^3.6.5",
|
2021-07-12 19:25:37 +02:00
|
|
|
"vue-style-loader": "^4.1.3",
|
2022-11-05 16:27:34 +01:00
|
|
|
"vue-template-compiler": "^2.7.13",
|
2022-02-02 18:59:17 +01:00
|
|
|
"vue2-filters": "^0.14.0",
|
2020-03-09 01:09:14 +01:00
|
|
|
"vuetify": "^1.5.24",
|
2023-01-02 13:24:53 +01:00
|
|
|
"webpack": "^5.75.0",
|
2022-11-05 16:27:34 +01:00
|
|
|
"webpack-bundle-analyzer": "^4.7.0",
|
2023-01-02 13:24:53 +01:00
|
|
|
"webpack-cli": "^5.0.1",
|
|
|
|
"webpack-hot-middleware": "^2.25.3",
|
2022-03-17 17:31:20 +01:00
|
|
|
"webpack-manifest-plugin": "^5.0.0",
|
2021-07-12 19:25:37 +02:00
|
|
|
"webpack-md5-hash": "^0.0.6",
|
2021-06-28 12:44:43 +02:00
|
|
|
"webpack-merge": "^5.8.0"
|
2018-07-27 17:31:39 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-08-31 19:56:58 +02:00
|
|
|
"node": ">= 16.0.0",
|
2022-01-16 15:30:15 +01:00
|
|
|
"npm": ">= 8.0.0",
|
2019-05-28 01:18:27 +02:00
|
|
|
"yarn": "please use npm"
|
2018-07-27 17:31:39 +02:00
|
|
|
},
|
2022-06-17 23:29:28 +02:00
|
|
|
"browserslist": ">0.25% and last 2 years"
|
2018-08-03 15:17:13 +02:00
|
|
|
}
|