2018-07-27 17:31:39 +02:00
|
|
|
{
|
|
|
|
"name": "photoprism",
|
|
|
|
"version": "1.0.0",
|
2020-07-05 14:48:49 +02:00
|
|
|
"description": "PhotoPrism Progressive Web App (PWA)",
|
2018-07-27 17:31:39 +02:00
|
|
|
"author": "Michael Mayer",
|
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",
|
2018-07-27 17:31:39 +02:00
|
|
|
"build": "webpack --optimize-minimize",
|
2019-05-09 06:48:10 +02:00
|
|
|
"lint": "eslint --cache src/ *.js",
|
|
|
|
"fmt": "eslint --cache --fix src/ *.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",
|
2020-06-25 16:16:00 +02:00
|
|
|
"acceptance": "testcafe \"chromium:headless --disable-dev-shm-usage\" --skip-js-errors --selector-timeout 5000 -S -s tests/screenshots tests/acceptance",
|
|
|
|
"acceptance-firefox": "testcafe firefox:headless --skip-js-errors --selector-timeout 5000 -S -s tests/screenshots tests/acceptance",
|
2019-12-10 19:56:32 +01:00
|
|
|
"acceptance-local": "testcafe chrome --selector-timeout 5000 -S -s tests/screenshots tests/acceptance",
|
2020-07-15 01:26:54 +02:00
|
|
|
"gettext-extract": "gettext-extract --output src/locales/translations.pot $(find src -type f \\( -iname \\*.vue -o -iname \\*.js \\))",
|
|
|
|
"gettext-compile": "gettext-compile --output src/locales/translations.json src/locales/*.po"
|
2018-07-27 17:31:39 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-09-13 17:35:02 +02:00
|
|
|
"@babel/cli": "^7.11.6",
|
|
|
|
"@babel/core": "^7.11.6",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.11.5",
|
|
|
|
"@babel/polyfill": "^7.11.5",
|
|
|
|
"@babel/preset-env": "^7.11.5",
|
|
|
|
"@babel/register": "^7.11.5",
|
2020-08-11 15:57:15 +02:00
|
|
|
"@babel/runtime": "^7.11.2",
|
2020-07-17 10:13:29 +02:00
|
|
|
"@fortawesome/fontawesome-free": "^5.14.0",
|
2020-08-14 16:06:31 +02:00
|
|
|
"acorn": "^6.4.1",
|
2020-09-16 01:09:31 +02:00
|
|
|
"ajv": "^6.12.5",
|
2020-08-11 15:57:15 +02:00
|
|
|
"autoprefixer": "^9.8.6",
|
2020-01-23 07:39:04 +01:00
|
|
|
"axios": "^0.19.2",
|
2020-07-21 15:02:37 +02:00
|
|
|
"axios-mock-adapter": "^1.18.2",
|
2020-03-09 01:09:14 +01:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-03-23 19:32:55 +01:00
|
|
|
"babel-loader": "^8.1.0",
|
2019-12-24 07:00:40 +01:00
|
|
|
"babel-plugin-istanbul": "^6.0.0",
|
2020-09-21 01:53:06 +02:00
|
|
|
"browserslist": "^4.14.3",
|
2019-05-07 15:41:33 +02:00
|
|
|
"chai": "^4.2.0",
|
2020-06-09 10:52:42 +02:00
|
|
|
"chalk": "^4.1.0",
|
2019-11-17 08:44:02 +01:00
|
|
|
"chart.js": "^2.9.3",
|
2020-04-22 17:04:40 +02:00
|
|
|
"chrome-finder": "^1.0.7",
|
2019-07-15 20:38:14 +02:00
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
2018-07-27 17:31:39 +02:00
|
|
|
"connect-history-api-fallback": "^1.3.0",
|
2020-09-21 01:53:06 +02:00
|
|
|
"copy-webpack-plugin": "^6.1.1",
|
2020-04-22 17:04:40 +02:00
|
|
|
"core-js": "^3.6.5",
|
2020-04-02 11:33:02 +02:00
|
|
|
"cross-env": "^7.0.2",
|
2020-09-13 17:35:02 +02:00
|
|
|
"crypto-random-string": "^3.3.0",
|
2019-05-07 15:41:33 +02:00
|
|
|
"css-loader": "^2.1.1",
|
|
|
|
"cssnano": "^4.1.10",
|
2020-08-11 15:57:15 +02:00
|
|
|
"easygettext": "^2.14.0",
|
2020-09-13 17:35:02 +02:00
|
|
|
"eslint": "^7.9.0",
|
2020-03-23 19:32:55 +01:00
|
|
|
"eslint-config-standard": "^14.1.1",
|
2020-07-15 02:13:03 +02:00
|
|
|
"eslint-formatter-pretty": "^4.0.0",
|
2019-05-07 15:41:33 +02:00
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
2020-07-15 02:13:03 +02:00
|
|
|
"eslint-loader": "^4.0.2",
|
2020-09-13 17:35:02 +02:00
|
|
|
"eslint-plugin-html": "^6.1.0",
|
2020-06-29 11:10:24 +02:00
|
|
|
"eslint-plugin-import": "^2.22.0",
|
2020-04-02 11:33:02 +02:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2019-07-15 20:38:14 +02:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2019-09-19 18:23:06 +02:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2018-07-27 17:31:39 +02:00
|
|
|
"eventsource-polyfill": "^0.9.6",
|
2019-05-07 15:41:33 +02:00
|
|
|
"file-loader": "^3.0.1",
|
|
|
|
"friendly-errors-webpack-plugin": "^1.7.0",
|
2020-09-13 17:35:02 +02:00
|
|
|
"hls.js": "^0.14.12",
|
|
|
|
"html-webpack-plugin": "^4.4.1",
|
2020-07-15 02:13:03 +02:00
|
|
|
"http-proxy-middleware": "^1.0.5",
|
|
|
|
"i18n-iso-countries": "^6.0.0",
|
2019-05-07 15:41:33 +02:00
|
|
|
"inject-loader": "^4.0.1",
|
2020-09-13 17:35:02 +02:00
|
|
|
"karma": "^5.2.2",
|
2019-09-19 18:23:06 +02:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
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",
|
2019-05-28 01:29:39 +02:00
|
|
|
"karma-verbose-reporter": "^0.0.6",
|
2019-06-18 01:26:36 +02:00
|
|
|
"karma-webpack": "^4.0.2",
|
2020-08-28 11:04:53 +02:00
|
|
|
"luxon": "^1.25.0",
|
2020-08-14 16:06:31 +02:00
|
|
|
"mapbox-gl": "^1.12.0",
|
2019-05-09 03:49:05 +02:00
|
|
|
"material-design-icons-iconfont": "^5.0.1",
|
2020-05-13 15:36:42 +02:00
|
|
|
"mediaelement": "^4.2.16",
|
2019-05-28 01:18:27 +02:00
|
|
|
"mini-css-extract-plugin": "^0.7.0",
|
2020-08-19 11:54:26 +02:00
|
|
|
"minimist": "^1.2.5",
|
2020-09-13 17:35:02 +02:00
|
|
|
"mocha": "^8.1.3",
|
2020-05-19 08:51:25 +02:00
|
|
|
"moment-timezone": "^0.5.31",
|
2020-09-21 01:53:06 +02:00
|
|
|
"node-storage-shim": "^2.0.1",
|
2020-09-13 17:35:02 +02:00
|
|
|
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
2020-08-11 15:57:15 +02:00
|
|
|
"ora": "^4.1.1",
|
2019-02-11 22:55:29 +01:00
|
|
|
"photoswipe": "^4.1.3",
|
2019-05-28 01:18:27 +02:00
|
|
|
"pluralize": "^8.0.0",
|
2020-09-21 01:53:06 +02:00
|
|
|
"postcss": "^7.0.34",
|
2019-05-07 15:41:33 +02:00
|
|
|
"postcss-browser-reporter": "^0.6.0",
|
|
|
|
"postcss-import": "^12.0.1",
|
|
|
|
"postcss-loader": "^3.0.0",
|
2019-07-15 20:38:14 +02:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2019-05-07 15:41:33 +02:00
|
|
|
"postcss-reporter": "^6.0.1",
|
|
|
|
"postcss-url": "^8.0.0",
|
2020-08-18 00:45:53 +02:00
|
|
|
"pubsub-js": "^1.9.0",
|
2020-09-13 17:35:02 +02:00
|
|
|
"puppeteer-core": "^5.3.0",
|
2020-07-29 15:54:46 +02:00
|
|
|
"regenerator-runtime": "^0.13.7",
|
2019-11-12 04:34:37 +01:00
|
|
|
"resolve-url-loader": "^3.1.1",
|
2019-09-19 18:23:06 +02:00
|
|
|
"sass-loader": "^7.3.1",
|
2020-08-11 15:57:15 +02:00
|
|
|
"sinon": "^9.0.3",
|
2019-11-16 16:06:34 +01:00
|
|
|
"sockette": "^2.0.6",
|
2020-08-11 15:57:15 +02:00
|
|
|
"string-strip-html": "^4.5.1",
|
2019-05-07 15:41:33 +02:00
|
|
|
"style-loader": "^0.23.1",
|
|
|
|
"sugarss": "^2.0.0",
|
2020-06-05 14:03:49 +02:00
|
|
|
"svg-url-loader": "^5.0.1",
|
2020-08-18 00:45:53 +02:00
|
|
|
"tar": "^6.0.5",
|
2019-06-05 10:18:03 +02:00
|
|
|
"truncate": "^2.1.0",
|
2019-05-07 15:41:33 +02:00
|
|
|
"url-loader": "^1.1.2",
|
2020-08-28 11:04:53 +02:00
|
|
|
"vue": "^2.6.12",
|
2020-03-23 19:32:55 +01:00
|
|
|
"vue-fullscreen": "^2.1.6",
|
2020-07-10 19:21:27 +02:00
|
|
|
"vue-gettext": "^2.1.10",
|
2018-09-18 23:24:19 +02:00
|
|
|
"vue-infinite-scroll": "^2.0.2",
|
2020-07-13 15:59:54 +02:00
|
|
|
"vue-js-modal": "^2.0.0-rc.6",
|
2019-05-07 15:41:33 +02:00
|
|
|
"vue-loader": "^14.2.4",
|
2020-04-26 12:24:28 +02:00
|
|
|
"vue-luxon": "^0.7.3",
|
2020-08-12 05:59:06 +02:00
|
|
|
"vue-router": "^3.4.3",
|
2019-05-07 15:41:33 +02:00
|
|
|
"vue-style-loader": "^4.1.2",
|
2020-08-28 11:04:53 +02:00
|
|
|
"vue-template-compiler": "^2.6.12",
|
2020-07-15 02:13:03 +02:00
|
|
|
"vue2-filters": "^0.11.0",
|
2020-01-15 04:04:33 +01:00
|
|
|
"vuelidate": "^0.7.5",
|
2020-03-09 01:09:14 +01:00
|
|
|
"vuetify": "^1.5.24",
|
2020-09-21 01:53:06 +02:00
|
|
|
"webpack": "^4.44.2",
|
|
|
|
"webpack-bundle-analyzer": "^3.9.0",
|
2020-06-22 15:16:26 +02:00
|
|
|
"webpack-cli": "^3.3.12",
|
2019-06-03 16:42:04 +02:00
|
|
|
"webpack-hot-middleware": "^2.25.0",
|
2019-05-07 15:41:33 +02:00
|
|
|
"webpack-md5-hash": "0.0.6",
|
2020-09-13 17:35:02 +02:00
|
|
|
"webpack-merge": "^5.1.4"
|
2018-07-27 17:31:39 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2019-05-28 01:18:27 +02:00
|
|
|
"node": ">= 8.0.0",
|
|
|
|
"npm": ">= 6.0.0",
|
|
|
|
"yarn": "please use npm"
|
2018-07-27 17:31:39 +02:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
2019-05-07 15:41:33 +02:00
|
|
|
"not ie <= 9",
|
|
|
|
"last 3 versions"
|
2018-07-27 17:31:39 +02:00
|
|
|
]
|
2018-08-03 15:17:13 +02:00
|
|
|
}
|