1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-24 08:42:24 +02:00
pigallery2/package.json

159 lines
5.0 KiB
JSON
Raw Normal View History

2016-03-12 13:53:19 +02:00
{
2017-06-02 23:48:46 +02:00
"name": "pigallery2",
2022-03-12 22:00:17 +02:00
"version": "1.9.3",
"description": "This is a photo gallery optimised for running low resource servers (especially on raspberry pi)",
2017-06-02 22:31:51 +02:00
"author": "Patrik J. Braun",
"homepage": "https://github.com/bpatrik/PiGallery2",
"license": "MIT",
2019-12-10 11:44:35 +02:00
"main": "./src/backend/index.js",
"bin": "./src/backend/index.js",
2016-03-12 13:53:19 +02:00
"scripts": {
"build": "tsc && gulp build-prod",
"build-en": "tsc && gulp build-prod --languages=en",
2019-12-08 13:44:18 +02:00
"create-release": "gulp create-release",
2019-07-19 16:03:50 +02:00
"build-backend": "tsc",
"pretest": "tsc",
2020-01-09 00:23:37 +02:00
"test": "ng test && nyc mocha --recursive test",
2021-05-16 08:15:42 +02:00
"lint": "tslint -p tsconfig.json -c tslint.json src/**/**.ts test/**/**.ts",
2020-01-09 00:23:37 +02:00
"coverage": "nyc report --reporter=text-lcov | coveralls",
2019-12-12 12:04:20 +02:00
"start": "node ./src/backend/index",
2021-04-17 18:32:32 +02:00
"run-dev": "ng build --configuration=dev",
"build-stats": "ng build --stats-json",
"analyze": "webpack-bundle-analyzer dist/en/stats.json",
2019-07-21 15:14:12 +02:00
"merge-new-translation": "gulp merge-new-translation",
2020-01-28 19:36:52 +02:00
"generate-man": "gulp generate-man"
2016-03-12 13:53:19 +02:00
},
2016-03-18 17:02:26 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/bpatrik/PiGallery2.git"
},
"bugs": {
"url": "https://github.com/bpatrik/PiGallery2/issues"
},
2016-03-12 13:53:19 +02:00
"dependencies": {
"archiver": "5.3.0",
2021-04-10 10:51:33 +02:00
"bcrypt": "5.0.1",
"better-sqlite3": "7.5.0",
2021-12-30 18:26:38 +02:00
"cookie-parser": "1.4.6",
"cookie-session": "2.0.0",
2020-09-13 14:44:12 +02:00
"csurf": "1.11.0",
2021-04-10 10:51:33 +02:00
"ejs": "3.1.6",
2022-02-05 13:37:58 +02:00
"exifreader": "4.2.0",
2021-12-30 18:26:38 +02:00
"express": "4.17.2",
"express-unless": "1.0.0",
2018-11-30 16:36:42 +02:00
"fluent-ffmpeg": "2.1.2",
2022-02-05 13:37:58 +02:00
"image-size": "1.0.1",
2020-09-13 14:44:12 +02:00
"jimp": "0.16.1",
2018-01-16 02:37:18 +02:00
"locale": "0.1.0",
2021-12-30 18:26:38 +02:00
"node-geocoder": "3.28.0",
2019-01-27 06:47:43 +02:00
"reflect-metadata": "0.1.13",
2022-02-17 10:24:47 +02:00
"sharp": "0.30.1",
2021-05-11 15:43:44 +02:00
"ts-exif-parser": "0.2.2",
2018-11-17 20:31:57 +02:00
"ts-node-iptc": "1.0.11",
"typeconfig": "2.0.21",
2021-12-30 18:26:38 +02:00
"typeorm": "0.2.41"
2016-12-27 00:36:38 +02:00
},
"devDependencies": {
2021-12-30 20:11:50 +02:00
"@angular-devkit/build-angular": "0.1102.17",
"@angular-devkit/build-optimizer": "0.1102.17",
"@angular/animations": "11.2.14",
"@angular/cli": "11.2.17",
"@angular/common": "11.2.14",
"@angular/compiler": "11.2.14",
"@angular/compiler-cli": "11.2.14",
"@angular/core": "11.2.14",
"@angular/forms": "11.2.14",
"@angular/language-service": "11.2.14",
"@angular/localize": "11.2.14",
"@angular/platform-browser": "11.2.14",
"@angular/platform-browser-dynamic": "11.2.14",
"@angular/router": "11.2.14",
2021-04-30 23:40:32 +02:00
"@asymmetrik/ngx-leaflet": "8.1.0",
"@asymmetrik/ngx-leaflet-markercluster": "5.0.1",
2021-05-11 15:43:44 +02:00
"@ngx-loading-bar/core": "5.1.2",
2021-12-30 18:26:38 +02:00
"@types/archiver": "5.1.1",
2021-05-11 15:43:44 +02:00
"@types/bcrypt": "5.0.0",
"@types/bcryptjs": "2.4.2",
2021-12-30 18:26:38 +02:00
"@types/chai": "4.3.0",
2019-12-07 21:21:23 +02:00
"@types/cookie-parser": "1.4.2",
2021-12-30 18:26:38 +02:00
"@types/cookie-session": "2.0.44",
"@types/csurf": "1.11.2",
"@types/ejs": "3.1.0",
"@types/express": "4.17.13",
"@types/express-jwt": "6.0.4",
"@types/fluent-ffmpeg": "2.1.20",
"@types/gulp": "4.0.9",
"@types/gulp-zip": "4.0.2",
2019-12-07 21:21:23 +02:00
"@types/image-size": "0.8.0",
2021-12-30 18:26:38 +02:00
"@types/jasmine": "3.10.2",
"@types/jsonwebtoken": "8.5.6",
"@types/leaflet": "1.7.7",
"@types/leaflet.markercluster": "1.4.6",
"@types/node": "15.14.9",
"@types/node-geocoder": "3.24.3",
"@types/sharp": "0.29.5",
2019-01-27 06:47:43 +02:00
"@types/winston": "2.4.4",
2021-04-10 10:51:33 +02:00
"@types/xml2js": "0.4.8",
"bootstrap": "4.6.0",
2022-02-05 13:37:58 +02:00
"chai": "4.3.6",
2020-01-08 00:31:38 +02:00
"chai-http": "4.3.0",
2021-05-11 15:43:44 +02:00
"codelyzer": "6.0.2",
2022-02-05 13:37:58 +02:00
"core-js": "3.21.0",
2021-12-30 18:26:38 +02:00
"coveralls": "3.1.1",
"deep-equal-in-any-order": "1.1.15",
2021-01-04 12:11:55 +02:00
"ejs-loader": "0.5.0",
2019-07-19 00:12:22 +02:00
"gulp": "4.0.2",
2021-12-30 18:26:38 +02:00
"gulp-json-editor": "2.5.6",
2019-07-19 00:12:22 +02:00
"gulp-typescript": "5.0.1",
2021-04-10 10:51:33 +02:00
"gulp-zip": "5.1.0",
"hammerjs": "2.0.8",
"intl": "1.2.5",
2022-02-05 13:37:58 +02:00
"jasmine-core": "4.0.0",
2021-05-11 15:43:44 +02:00
"jasmine-spec-reporter": "7.0.0",
"jw-bootstrap-switch-ng2": "2.0.5",
2022-02-05 13:37:58 +02:00
"karma": "6.3.15",
2019-12-07 21:21:23 +02:00
"karma-chrome-launcher": "3.1.0",
2018-12-02 21:57:16 +02:00
"karma-cli": "2.0.0",
2020-09-13 14:44:12 +02:00
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
2021-12-30 18:26:38 +02:00
"karma-jasmine-html-reporter": "1.7.0",
"karma-remap-istanbul": "0.6.0",
2018-12-08 12:28:56 +02:00
"karma-systemjs": "0.16.0",
"leaflet": "1.7.1",
2022-02-05 13:37:58 +02:00
"leaflet.markercluster": "1.5.3",
"mocha": "9.2.0",
"ngx-bootstrap": "6.2.0",
2021-04-10 10:51:33 +02:00
"ngx-clipboard": "14.0.1",
"ngx-cookie-service": "11.0.2",
2021-12-31 19:50:21 +02:00
"ngx-markdown": "11.1.3",
2021-05-11 15:43:44 +02:00
"ngx-device-detector": "2.0.10",
2021-04-10 10:51:33 +02:00
"ngx-toastr": "13.2.1",
2020-09-13 14:44:12 +02:00
"nyc": "15.1.0",
"open-iconic": "1.1.1",
2020-09-13 14:44:12 +02:00
"protractor": "7.0.0",
2019-01-27 06:47:43 +02:00
"remap-istanbul": "0.13.0",
2021-04-10 10:51:33 +02:00
"rxjs": "6.6.7",
"rxjs-compat": "6.6.7",
"ts-helpers": "1.1.2",
2021-12-30 18:26:38 +02:00
"ts-node": "10.4.0",
"tslint": "6.1.3",
2021-12-30 20:11:50 +02:00
"typescript": "4.1.6",
2021-11-08 22:50:42 +02:00
"xlf-google-translate": "1.0.0-beta.22",
"web-animations-js": "2.3.2",
2021-12-30 18:26:38 +02:00
"webpack-bundle-analyzer": "4.5.0",
"xml2js": "0.4.23",
2021-04-10 10:51:33 +02:00
"zone.js": "0.11.4"
},
"//": {
"TODO": "sharp 0.28.1 fails arm/v7 build as Prebuilt libvips 8.10.6 binaries are not yet available for linuxmusl-armv7. https://sharp.pixelplumbing.com/install"
},
"optionalDependencies": {
"ffmpeg-static": "4.4.1",
"ffprobe-static": "3.0.0",
2021-01-04 11:32:19 +02:00
"mysql": "2.18.1"
2017-07-23 22:36:28 +02:00
},
"engines": {
2022-01-15 15:39:30 +02:00
"node": ">=14.14 <15.0"
2020-01-01 12:06:14 +02:00
}
2016-03-12 13:53:19 +02:00
}