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.2 KiB
JSON
Raw Normal View History

2016-03-12 13:53:19 +02:00
{
2017-06-02 23:48:46 +02:00
"name": "pigallery2",
2023-11-26 11:25:17 +02:00
"version": "2.0.3-edge",
"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",
"test": "ng test && nyc mocha --recursive test --exclude test/cypress/**/*.js",
"test-backend": "tsc && mocha --recursive test --exclude test/cypress/**/*.js",
2023-10-12 00:55:55 +02:00
"coverage": "nyc report --reporter=lcov",
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",
2022-04-04 19:37:31 +02:00
"generate-man": "gulp generate-man",
"lint": "ng lint",
2023-09-06 20:35:10 +02:00
"start-e2e-server": "node ./test/folder-reset test/e2e && node ./src/backend/index --config-path=test/e2e/config.json --Database-dbFolder=test/e2e --Server-port=8080",
2023-09-06 12:56:52 +02:00
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"build-extension-interface": "tsc -p extension/ext-interface.tsconfig.json && tsc -p extension/ext-enums.tsconfig.json"
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": {
2022-11-29 22:23:39 +02:00
"archiver": "5.3.1",
"bcrypt": "5.1.0",
2023-03-11 12:28:19 +02:00
"better-sqlite3": "8.2.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",
2022-11-29 22:23:39 +02:00
"ejs": "3.1.8",
2023-11-13 08:32:12 +02:00
"exifr": "7.1.3",
2022-11-29 22:23:39 +02:00
"express": "4.18.2",
"express-unless": "2.1.3",
2018-11-30 16:36:42 +02:00
"fluent-ffmpeg": "2.1.2",
"image-size": "1.1.1",
2018-01-16 02:37:18 +02:00
"locale": "0.1.0",
2022-11-29 22:23:39 +02:00
"node-geocoder": "4.2.0",
"nodemailer": "6.9.4",
2019-01-27 06:47:43 +02:00
"reflect-metadata": "0.1.13",
2023-03-11 12:28:19 +02:00
"sharp": "0.31.3",
2024-04-12 23:16:59 +02:00
"ts-node-iptc": "1.0.11",
"typeconfig": "2.3.1",
2023-07-29 13:18:04 +02:00
"typeorm": "0.3.12",
"xml2js": "0.6.2"
2016-12-27 00:36:38 +02:00
},
"devDependencies": {
2023-03-11 12:12:46 +02:00
"@angular-builders/custom-webpack": "15.0.0",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/animations": "15.2.2",
"@angular/cli": "15.2.2",
"@angular/common": "15.2.2",
"@angular/compiler": "15.2.2",
"@angular/compiler-cli": "15.2.2",
"@angular/core": "15.2.2",
"@angular/forms": "15.2.2",
"@angular/language-service": "15.2.2",
"@angular/localize": "15.2.2",
"@angular/platform-browser": "15.2.2",
"@angular/platform-browser-dynamic": "15.2.2",
"@angular/router": "15.2.2",
"@asymmetrik/ngx-leaflet": "15.0.1",
"@asymmetrik/ngx-leaflet-markercluster": "15.0.0",
"@ng-icons/core": "24.0.0",
"@ng-icons/ionicons": "24.0.0",
2022-04-02 00:07:16 +02:00
"@ngx-loading-bar/core": "6.0.2",
2022-03-27 19:25:53 +02:00
"@types/archiver": "5.3.1",
2021-05-11 15:43:44 +02:00
"@types/bcrypt": "5.0.0",
"@types/bcryptjs": "2.4.2",
2023-03-11 12:28:19 +02:00
"@types/chai": "4.3.4",
"@types/cookie-parser": "1.4.3",
2021-12-30 18:26:38 +02:00
"@types/cookie-session": "2.0.44",
"@types/csurf": "1.11.2",
2023-03-11 12:28:19 +02:00
"@types/ejs": "3.1.2",
"@types/express": "4.17.17",
2021-12-30 18:26:38 +02:00
"@types/express-jwt": "6.0.4",
2023-03-11 12:28:19 +02:00
"@types/fluent-ffmpeg": "2.1.21",
"@types/gulp": "4.0.10",
"@types/gulp-sourcemaps": "^0.0.38",
2021-12-30 18:26:38 +02:00
"@types/gulp-zip": "4.0.2",
2023-03-11 12:28:19 +02:00
"@types/jasmine": "4.3.1",
"@types/jsonwebtoken": "9.0.1",
"@types/leaflet": "1.9.1",
"@types/leaflet.markercluster": "1.5.1",
"@types/node": "18.15.0",
"@types/node-geocoder": "4.2.0",
"@types/nodemailer": "6.4.9",
2023-03-11 12:28:19 +02:00
"@types/sharp": "0.31.1",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"bootstrap": "5.3.1",
2023-03-11 12:28:19 +02:00
"chai": "4.3.7",
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",
2023-03-11 12:28:19 +02:00
"core-js": "3.29.0",
2022-03-30 23:24:22 +02:00
"coveralls": "3.1.1",
"cypress": "13.1.0",
2023-03-11 12:28:19 +02:00
"deep-equal-in-any-order": "2.0.5",
2021-01-04 12:11:55 +02:00
"ejs-loader": "0.5.0",
2023-03-11 12:28:19 +02:00
"eslint": "8.36.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",
"gulp-sourcemaps": "3.0.0",
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",
2023-03-11 12:28:19 +02:00
"jasmine-core": "4.5.0",
"karma": "6.4.1",
2022-03-27 19:25:53 +02:00
"karma-chrome-launcher": "3.1.1",
2022-03-30 23:11:11 +02:00
"karma-coverage": "2.2.0",
2023-03-11 12:28:19 +02:00
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"leaflet": "1.9.3",
2022-02-05 13:37:58 +02:00
"leaflet.markercluster": "1.5.3",
2023-03-11 11:46:29 +02:00
"mocha": "10.2.0",
"ngx-bootstrap": "10.3.0",
2022-03-31 23:05:31 +02:00
"ngx-clipboard": "15.1.0",
2023-03-11 12:12:46 +02:00
"ngx-cookie-service": "15.0.0",
"ngx-device-detector": "5.0.1",
"ngx-markdown": "15.1.2",
"ngx-toastr": "15.2.2",
2020-09-13 14:44:12 +02:00
"nyc": "15.1.0",
2023-03-11 12:12:46 +02:00
"rxjs": "7.8.0",
"ts-helpers": "1.1.2",
2023-03-11 12:28:19 +02:00
"ts-node": "10.9.1",
"webpack-bundle-analyzer": "4.8.0",
"xlf-google-translate": "1.0.0-beta.23",
"zone.js": "0.12.0"
},
"optionalDependencies": {
2022-11-29 22:23:39 +02:00
"ffmpeg-static": "5.1.0",
"ffprobe-static": "3.1.0",
2021-01-04 11:32:19 +02:00
"mysql": "2.18.1"
2017-07-23 22:36:28 +02:00
},
"engines": {
2022-11-29 22:52:26 +02:00
"node": ">=18 <19.0"
2020-01-01 12:06:14 +02:00
}
}