1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/package.json

158 lines
5.2 KiB
JSON
Raw Normal View History

2016-03-12 19:53:19 +08:00
{
2017-06-03 05:48:46 +08:00
"name": "pigallery2",
2023-11-26 17:25:17 +08:00
"version": "2.0.3-edge",
"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",
"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": {
"build": "tsc && gulp build-prod",
"build-en": "tsc && gulp build-prod --languages=en",
2019-12-08 19:44:18 +08:00
"create-release": "gulp create-release",
2019-07-19 22:03:50 +08: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 06:55:55 +08:00
"coverage": "nyc report --reporter=lcov",
2019-12-12 18:04:20 +08:00
"start": "node ./src/backend/index",
2021-04-18 00:32:32 +08:00
"run-dev": "ng build --configuration=dev",
"build-stats": "ng build --stats-json",
"analyze": "webpack-bundle-analyzer dist/en/stats.json",
2019-07-21 21:14:12 +08:00
"merge-new-translation": "gulp merge-new-translation",
2022-04-05 01:37:31 +08:00
"generate-man": "gulp generate-man",
"lint": "ng lint",
2023-09-07 02:35:10 +08: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 18:56:52 +08: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 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": {
2022-11-30 04:23:39 +08:00
"archiver": "5.3.1",
"bcrypt": "5.1.0",
2023-03-11 18:28:19 +08:00
"better-sqlite3": "8.2.0",
2021-12-31 00:26:38 +08:00
"cookie-parser": "1.4.6",
"cookie-session": "2.0.0",
2020-09-13 20:44:12 +08:00
"csurf": "1.11.0",
2022-11-30 04:23:39 +08:00
"ejs": "3.1.8",
2023-11-13 14:32:12 +08:00
"exifr": "7.1.3",
2022-11-30 04:23:39 +08:00
"express": "4.18.2",
"express-unless": "2.1.3",
2018-11-30 22:36:42 +08:00
"fluent-ffmpeg": "2.1.2",
"image-size": "1.1.1",
2018-01-16 08:37:18 +08:00
"locale": "0.1.0",
2022-11-30 04:23:39 +08:00
"node-geocoder": "4.2.0",
"nodemailer": "6.9.4",
2019-01-27 12:47:43 +08:00
"reflect-metadata": "0.1.13",
2023-03-11 18:28:19 +08:00
"sharp": "0.31.3",
2024-03-03 05:18:31 +08:00
"typeconfig": "2.2.11",
2023-07-29 19:18:04 +08:00
"typeorm": "0.3.12",
"xml2js": "0.6.2"
2016-12-27 06:36:38 +08:00
},
"devDependencies": {
2023-03-11 18:12:46 +08: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 06:07:16 +08:00
"@ngx-loading-bar/core": "6.0.2",
2022-03-28 01:25:53 +08:00
"@types/archiver": "5.3.1",
2021-05-11 21:43:44 +08:00
"@types/bcrypt": "5.0.0",
"@types/bcryptjs": "2.4.2",
2023-03-11 18:28:19 +08:00
"@types/chai": "4.3.4",
"@types/cookie-parser": "1.4.3",
2021-12-31 00:26:38 +08:00
"@types/cookie-session": "2.0.44",
"@types/csurf": "1.11.2",
2023-03-11 18:28:19 +08:00
"@types/ejs": "3.1.2",
"@types/express": "4.17.17",
2021-12-31 00:26:38 +08:00
"@types/express-jwt": "6.0.4",
2023-03-11 18:28:19 +08:00
"@types/fluent-ffmpeg": "2.1.21",
"@types/gulp": "4.0.10",
"@types/gulp-sourcemaps": "^0.0.38",
2021-12-31 00:26:38 +08:00
"@types/gulp-zip": "4.0.2",
2023-03-11 18:28:19 +08: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 18:28:19 +08: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 18:28:19 +08:00
"chai": "4.3.7",
2020-01-08 06:31:38 +08:00
"chai-http": "4.3.0",
2021-05-11 21:43:44 +08:00
"codelyzer": "6.0.2",
2023-03-11 18:28:19 +08:00
"core-js": "3.29.0",
2022-03-31 05:24:22 +08:00
"coveralls": "3.1.1",
"cypress": "13.1.0",
2023-03-11 18:28:19 +08:00
"deep-equal-in-any-order": "2.0.5",
2021-01-04 18:11:55 +08:00
"ejs-loader": "0.5.0",
2023-03-11 18:28:19 +08:00
"eslint": "8.36.0",
2019-07-19 06:12:22 +08:00
"gulp": "4.0.2",
2021-12-31 00:26:38 +08:00
"gulp-json-editor": "2.5.6",
"gulp-sourcemaps": "3.0.0",
2019-07-19 06:12:22 +08:00
"gulp-typescript": "5.0.1",
2021-04-10 16:51:33 +08:00
"gulp-zip": "5.1.0",
"hammerjs": "2.0.8",
"intl": "1.2.5",
2023-03-11 18:28:19 +08:00
"jasmine-core": "4.5.0",
"karma": "6.4.1",
2022-03-28 01:25:53 +08:00
"karma-chrome-launcher": "3.1.1",
2022-03-31 05:11:11 +08:00
"karma-coverage": "2.2.0",
2023-03-11 18:28:19 +08:00
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"leaflet": "1.9.3",
2022-02-05 19:37:58 +08:00
"leaflet.markercluster": "1.5.3",
2023-03-11 17:46:29 +08:00
"mocha": "10.2.0",
"ngx-bootstrap": "10.3.0",
2022-04-01 05:05:31 +08:00
"ngx-clipboard": "15.1.0",
2023-03-11 18:12:46 +08: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 20:44:12 +08:00
"nyc": "15.1.0",
2023-03-11 18:12:46 +08:00
"rxjs": "7.8.0",
"ts-helpers": "1.1.2",
2023-03-11 18:28:19 +08: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-30 04:23:39 +08:00
"ffmpeg-static": "5.1.0",
"ffprobe-static": "3.1.0",
2021-01-04 17:32:19 +08:00
"mysql": "2.18.1"
2017-07-24 04:36:28 +08:00
},
"engines": {
2022-11-30 04:52:26 +08:00
"node": ">=18 <19.0"
2020-01-01 18:06:14 +08:00
}
}