2016-03-12 19:53:19 +08:00
|
|
|
{
|
2017-06-03 05:48:46 +08:00
|
|
|
"name": "pigallery2",
|
2021-04-10 17:14:00 +08:00
|
|
|
"version": "1.8.5",
|
2016-03-13 23:01:19 +08:00
|
|
|
"description": "This is a photo gallery optimised for running low resource servers (especially on raspberry pi)",
|
2017-06-03 04:31:51 +08:00
|
|
|
"author": "Patrik J. Braun",
|
2016-03-13 23:01:19 +08:00
|
|
|
"homepage": "https://github.com/bpatrik/PiGallery2",
|
|
|
|
"license": "MIT",
|
2019-12-10 17:44:35 +08:00
|
|
|
"main": "./src/backend/index.js",
|
|
|
|
"bin": "./src/backend/index.js",
|
2016-03-12 19:53:19 +08:00
|
|
|
"scripts": {
|
2019-12-14 17:15:56 +08:00
|
|
|
"build": "tsc && gulp build-prod",
|
2019-12-08 19:44:18 +08:00
|
|
|
"create-release": "gulp create-release",
|
2019-07-19 22:03:50 +08:00
|
|
|
"build-backend": "tsc",
|
2017-06-11 04:56:23 +08:00
|
|
|
"pretest": "tsc",
|
2020-01-09 06:23:37 +08:00
|
|
|
"test": "ng test && nyc mocha --recursive test",
|
|
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
2019-12-12 18:04:20 +08:00
|
|
|
"start": "node ./src/backend/index",
|
2019-12-31 00:52:58 +08:00
|
|
|
"run-dev": "ng build --aot --watch --output-path=./dist --i18n-locale en --i18n-file src/frontend/translate/messages.en.xlf --i18n-missing-translation warning",
|
2020-02-05 02:37:47 +08:00
|
|
|
"run-dev-hu": "ng build --aot --watch --output-path=./dist --i18n-locale hu --i18n-file src/frontend/translate/messages.hu.xlf --i18n-missing-translation warning",
|
2019-12-10 17:44:35 +08:00
|
|
|
"build-stats": "ng build --aot --prod --stats-json --output-path=./dist --i18n-locale en --i18n-file src/frontend/translate/messages.en.xlf --i18n-missing-translation warning",
|
2019-07-21 21:14:12 +08:00
|
|
|
"merge-new-translation": "gulp merge-new-translation",
|
2020-01-29 01:36:52 +08:00
|
|
|
"add-translation": "gulp add-translation",
|
|
|
|
"generate-man": "gulp generate-man"
|
2016-03-12 19:53:19 +08:00
|
|
|
},
|
2016-03-18 23:02:26 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/bpatrik/PiGallery2.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/bpatrik/PiGallery2/issues"
|
|
|
|
},
|
2016-03-12 19:53:19 +08:00
|
|
|
"dependencies": {
|
2021-02-03 05:29:43 +08:00
|
|
|
"bcrypt": "5.0.0",
|
2019-07-19 06:12:22 +08:00
|
|
|
"body-parser": "1.19.0",
|
2020-09-13 20:44:12 +08:00
|
|
|
"cookie-parser": "1.4.5",
|
2021-01-04 18:11:55 +08:00
|
|
|
"cookie-session": "2.0.0-rc.1",
|
2020-09-13 20:44:12 +08:00
|
|
|
"csurf": "1.11.0",
|
|
|
|
"ejs": "3.1.5",
|
2021-01-04 18:11:55 +08:00
|
|
|
"exifreader": "3.13.0",
|
2019-07-19 06:12:22 +08:00
|
|
|
"express": "4.17.1",
|
2020-01-08 05:17:54 +08:00
|
|
|
"express-unless": "0.5.0",
|
2018-11-30 22:36:42 +08:00
|
|
|
"fluent-ffmpeg": "2.1.2",
|
2021-01-04 18:11:55 +08:00
|
|
|
"image-size": "0.9.3",
|
2020-09-13 20:44:12 +08:00
|
|
|
"jimp": "0.16.1",
|
2018-01-16 08:37:18 +08:00
|
|
|
"locale": "0.1.0",
|
2021-04-06 17:32:31 +08:00
|
|
|
"node-geocoder": "^3.27.0",
|
2019-01-27 12:47:43 +08:00
|
|
|
"reflect-metadata": "0.1.13",
|
2021-02-03 05:29:43 +08:00
|
|
|
"sharp": "0.23.4",
|
2020-09-13 20:44:12 +08:00
|
|
|
"sqlite3": "5.0.0",
|
2020-09-06 16:11:30 +08:00
|
|
|
"ts-exif-parser": "0.2.1",
|
2018-11-18 02:31:57 +08:00
|
|
|
"ts-node-iptc": "1.0.11",
|
2020-12-26 19:12:19 +08:00
|
|
|
"typeconfig": "2.0.14",
|
2021-01-04 18:11:55 +08:00
|
|
|
"typeorm": "0.2.29",
|
2019-12-11 02:27:24 +08:00
|
|
|
"winston": "2.4.4"
|
2016-12-27 06:36:38 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-12-08 03:21:23 +08:00
|
|
|
"@angular-devkit/build-angular": "0.803.20",
|
|
|
|
"@angular-devkit/build-optimizer": "0.803.20",
|
|
|
|
"@angular/animations": "8.2.14",
|
|
|
|
"@angular/cli": "8.3.20",
|
|
|
|
"@angular/common": "8.2.14",
|
|
|
|
"@angular/compiler": "8.2.14",
|
|
|
|
"@angular/compiler-cli": "8.2.14",
|
|
|
|
"@angular/core": "8.2.14",
|
|
|
|
"@angular/forms": "8.2.14",
|
2019-07-19 06:12:22 +08:00
|
|
|
"@angular/http": "7.2.15",
|
2019-12-08 03:21:23 +08:00
|
|
|
"@angular/language-service": "8.2.14",
|
|
|
|
"@angular/platform-browser": "8.2.14",
|
|
|
|
"@angular/platform-browser-dynamic": "8.2.14",
|
|
|
|
"@angular/router": "8.2.14",
|
2018-07-29 01:58:17 +08:00
|
|
|
"@ngx-translate/i18n-polyfill": "1.0.0",
|
2020-01-08 06:31:38 +08:00
|
|
|
"@types/bcrypt": "3.0.0",
|
2018-10-22 06:24:17 +08:00
|
|
|
"@types/bcryptjs": "2.4.2",
|
2021-01-04 18:11:55 +08:00
|
|
|
"@types/chai": "4.2.14",
|
2019-12-08 03:21:23 +08:00
|
|
|
"@types/cookie-parser": "1.4.2",
|
2021-01-04 18:11:55 +08:00
|
|
|
"@types/cookie-session": "2.0.42",
|
|
|
|
"@types/csurf": "1.11.0",
|
|
|
|
"@types/ejs": "3.0.5",
|
|
|
|
"@types/express": "4.17.9",
|
|
|
|
"@types/express-jwt": "6.0.0",
|
|
|
|
"@types/fluent-ffmpeg": "2.1.16",
|
|
|
|
"@types/gulp": "4.0.7",
|
2019-12-08 03:21:23 +08:00
|
|
|
"@types/gulp-zip": "4.0.1",
|
|
|
|
"@types/image-size": "0.8.0",
|
2021-01-04 18:11:55 +08:00
|
|
|
"@types/jasmine": "3.6.2",
|
|
|
|
"@types/jsonwebtoken": "8.5.0",
|
|
|
|
"@types/node": "14.14.19",
|
2021-04-06 17:32:31 +08:00
|
|
|
"@types/node-geocoder": "^3.24.1",
|
2021-01-04 18:11:55 +08:00
|
|
|
"@types/sharp": "0.26.1",
|
2019-01-27 12:47:43 +08:00
|
|
|
"@types/winston": "2.4.4",
|
2021-01-04 18:11:55 +08:00
|
|
|
"@types/xml2js": "0.4.7",
|
2019-01-03 22:58:24 +08:00
|
|
|
"@yaga/leaflet-ng2": "1.0.0",
|
2021-01-04 18:11:55 +08:00
|
|
|
"bootstrap": "4.5.3",
|
2018-10-22 06:24:17 +08:00
|
|
|
"chai": "4.2.0",
|
2020-01-08 06:31:38 +08:00
|
|
|
"chai-http": "4.3.0",
|
2021-01-04 18:11:55 +08:00
|
|
|
"codelyzer": "6.0.1",
|
|
|
|
"core-js": "3.8.2",
|
2020-09-13 20:44:12 +08:00
|
|
|
"coveralls": "3.1.0",
|
2021-01-16 23:59:59 +08:00
|
|
|
"deep-equal-in-any-order": "^1.0.28",
|
2021-01-04 18:11:55 +08:00
|
|
|
"ejs-loader": "0.5.0",
|
2019-07-19 06:12:22 +08:00
|
|
|
"gulp": "4.0.2",
|
2019-12-22 01:14:28 +08:00
|
|
|
"gulp-json-editor": "2.5.4",
|
2019-07-19 06:12:22 +08:00
|
|
|
"gulp-typescript": "5.0.1",
|
2020-09-13 20:44:12 +08:00
|
|
|
"gulp-zip": "5.0.2",
|
2018-05-15 21:38:05 +08:00
|
|
|
"hammerjs": "2.0.8",
|
|
|
|
"intl": "1.2.5",
|
2020-09-13 20:44:12 +08:00
|
|
|
"jasmine-core": "3.6.0",
|
2021-01-04 18:11:55 +08:00
|
|
|
"jasmine-spec-reporter": "6.0.0",
|
2019-02-03 08:28:57 +08:00
|
|
|
"jw-bootstrap-switch-ng2": "2.0.5",
|
2021-01-04 18:11:55 +08:00
|
|
|
"karma": "5.2.3",
|
2019-12-08 03:21:23 +08:00
|
|
|
"karma-chrome-launcher": "3.1.0",
|
2018-12-03 03:57:16 +08:00
|
|
|
"karma-cli": "2.0.0",
|
2020-09-13 20:44:12 +08:00
|
|
|
"karma-coverage-istanbul-reporter": "3.0.3",
|
|
|
|
"karma-jasmine": "4.0.1",
|
|
|
|
"karma-jasmine-html-reporter": "1.5.4",
|
2018-05-15 21:38:05 +08:00
|
|
|
"karma-remap-istanbul": "0.6.0",
|
2018-12-08 18:28:56 +08:00
|
|
|
"karma-systemjs": "0.16.0",
|
2021-01-04 18:11:55 +08:00
|
|
|
"mocha": "8.2.1",
|
2021-03-15 00:00:43 +08:00
|
|
|
"natural-orderby": "2.0.3",
|
2018-05-15 21:38:05 +08:00
|
|
|
"ng2-cookies": "1.0.12",
|
|
|
|
"ng2-slim-loading-bar": "4.0.0",
|
2019-12-08 03:21:23 +08:00
|
|
|
"ngx-bootstrap": "5.2.0",
|
|
|
|
"ngx-clipboard": "12.3.0",
|
|
|
|
"ngx-toastr": "11.2.1",
|
2020-09-13 20:44:12 +08:00
|
|
|
"nyc": "15.1.0",
|
2018-05-15 21:38:05 +08:00
|
|
|
"open-iconic": "1.1.1",
|
2020-09-13 20:44:12 +08:00
|
|
|
"protractor": "7.0.0",
|
2019-01-27 12:47:43 +08:00
|
|
|
"remap-istanbul": "0.13.0",
|
2019-12-08 03:21:23 +08:00
|
|
|
"rxjs": "6.5.3",
|
|
|
|
"rxjs-compat": "6.5.3",
|
|
|
|
"terser": "4.4.2",
|
2018-05-15 21:38:05 +08:00
|
|
|
"ts-helpers": "1.1.2",
|
2021-01-04 18:11:55 +08:00
|
|
|
"ts-node": "9.1.1",
|
2020-09-13 20:44:12 +08:00
|
|
|
"tslint": "6.1.3",
|
2019-12-08 03:21:23 +08:00
|
|
|
"typescript": "3.5.3",
|
2020-01-01 00:27:38 +08:00
|
|
|
"xlf-google-translate": "1.0.0-beta.19",
|
|
|
|
"xml2js": "0.4.23",
|
2021-01-04 18:11:55 +08:00
|
|
|
"zone.js": "0.11.3"
|
2017-05-28 18:33:18 +08:00
|
|
|
},
|
2019-02-03 08:28:57 +08:00
|
|
|
"//": [
|
2019-03-03 17:30:12 +08:00
|
|
|
"TODO: remove terser version lock once webpack is fixed",
|
|
|
|
"TODO: check i18n-pollify once angular 8 is out"
|
2019-02-03 08:28:57 +08:00
|
|
|
],
|
2018-10-22 06:24:17 +08:00
|
|
|
"resolutions": {
|
|
|
|
"natives": "1.1.3"
|
|
|
|
},
|
2017-05-28 18:33:18 +08:00
|
|
|
"optionalDependencies": {
|
2019-12-08 03:21:23 +08:00
|
|
|
"@ffmpeg-installer/ffmpeg": "1.0.20",
|
2020-09-13 20:44:12 +08:00
|
|
|
"@ffprobe-installer/ffprobe": "1.1.0",
|
2021-01-04 17:32:19 +08:00
|
|
|
"mysql": "2.18.1"
|
2017-07-24 04:36:28 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2021-01-04 17:32:19 +08:00
|
|
|
"node": ">=12.0 <15.0"
|
2020-01-01 18:06:14 +08:00
|
|
|
}
|
2016-03-12 19:53:19 +08:00
|
|
|
}
|