2016-03-12 19:53:19 +08:00
|
|
|
{
|
2017-06-03 05:48:46 +08:00
|
|
|
"name": "pigallery2",
|
2017-12-20 00:19:48 +08:00
|
|
|
"version": "1.0.0",
|
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",
|
2017-07-04 16:24:20 +08:00
|
|
|
"main": "./backend/index.js",
|
|
|
|
"bin": "./backend/index.js",
|
2016-03-12 19:53:19 +08:00
|
|
|
"scripts": {
|
2018-01-07 22:11:05 +08:00
|
|
|
"install": "tsc && gulp build-prod",
|
2017-07-27 01:43:06 +08:00
|
|
|
"build-release": "gulp build-release",
|
2017-06-11 04:56:23 +08:00
|
|
|
"pretest": "tsc",
|
2017-12-20 00:19:48 +08:00
|
|
|
"test": "ng test --single-run && mocha --recursive test/backend/unit && mocha --recursive test/backend/integration",
|
2017-07-04 16:24:20 +08:00
|
|
|
"start": "node ./backend/index",
|
2017-06-11 04:32:56 +08:00
|
|
|
"ng": "ng",
|
|
|
|
"lint": "ng lint",
|
2017-12-25 07:42:25 +08:00
|
|
|
"e2e": "ng e2e",
|
|
|
|
"build-hu": "ng build --aot --output-path=./dist/hu --locale hu --i18n-format xlf --i18n-file frontend/locale/messages.hu.xlf --missing-translation warning"
|
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": {
|
2017-07-12 04:10:36 +08:00
|
|
|
"bcryptjs": "2.4.3",
|
2017-10-20 00:08:07 +08:00
|
|
|
"body-parser": "1.18.2",
|
2017-12-25 07:42:25 +08:00
|
|
|
"cookie-parser": "^1.4.3",
|
2017-12-18 00:50:50 +08:00
|
|
|
"cookie-session": "2.0.0-beta.3",
|
2017-07-30 15:56:43 +08:00
|
|
|
"ejs": "2.5.7",
|
2017-10-20 00:08:07 +08:00
|
|
|
"express": "4.16.2",
|
2017-07-12 04:10:36 +08:00
|
|
|
"jimp": "0.2.28",
|
2017-12-25 07:42:25 +08:00
|
|
|
"locale": "^0.1.0",
|
2017-12-18 00:50:50 +08:00
|
|
|
"mysql": "2.15.0",
|
2017-07-12 04:10:36 +08:00
|
|
|
"reflect-metadata": "0.1.10",
|
2017-12-18 00:50:50 +08:00
|
|
|
"sqlite3": "3.1.13",
|
|
|
|
"ts-exif-parser": "0.1.23",
|
|
|
|
"ts-node-iptc": "1.0.9",
|
|
|
|
"typeconfig": "1.0.5",
|
2017-12-20 07:20:37 +08:00
|
|
|
"typeorm": "0.1.8",
|
2017-10-20 00:08:07 +08:00
|
|
|
"winston": "2.4.0"
|
2016-12-27 06:36:38 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-12-18 00:50:50 +08:00
|
|
|
"@agm/core": "^1.0.0-beta.2",
|
2017-12-25 07:42:25 +08:00
|
|
|
"@angular/animations": "^5.1.2",
|
|
|
|
"@angular/cli": "1.6.2",
|
|
|
|
"@angular/common": "~5.1.2",
|
|
|
|
"@angular/compiler": "~5.1.2",
|
|
|
|
"@angular/compiler-cli": "^5.1.2",
|
|
|
|
"@angular/core": "~5.1.2",
|
|
|
|
"@angular/forms": "~5.1.2",
|
|
|
|
"@angular/http": "~5.1.2",
|
|
|
|
"@angular/language-service": "^5.1.2",
|
|
|
|
"@angular/platform-browser": "~5.1.2",
|
|
|
|
"@angular/platform-browser-dynamic": "~5.1.2",
|
|
|
|
"@angular/router": "~5.1.2",
|
2017-10-20 00:08:07 +08:00
|
|
|
"@types/bcryptjs": "^2.4.1",
|
2017-12-18 00:50:50 +08:00
|
|
|
"@types/chai": "^4.0.10",
|
|
|
|
"@types/cookie-session": "^2.0.34",
|
2017-12-25 07:42:25 +08:00
|
|
|
"@types/express": "^4.11.0",
|
2017-10-20 00:08:07 +08:00
|
|
|
"@types/gm": "^1.17.33",
|
2017-12-18 00:50:50 +08:00
|
|
|
"@types/jasmine": "^2.8.2",
|
2017-12-25 07:42:25 +08:00
|
|
|
"@types/jimp": "^0.2.28",
|
|
|
|
"@types/node": "^8.5.2",
|
2017-12-18 00:50:50 +08:00
|
|
|
"@types/sharp": "^0.17.6",
|
|
|
|
"@types/winston": "^2.3.7",
|
2017-07-15 18:47:11 +08:00
|
|
|
"bootstrap": "^3.3.7",
|
2017-10-20 00:08:07 +08:00
|
|
|
"chai": "^4.1.2",
|
2017-12-18 00:50:50 +08:00
|
|
|
"codelyzer": "~4.0.2",
|
|
|
|
"core-js": "^2.5.3",
|
2017-06-11 04:32:56 +08:00
|
|
|
"ejs-loader": "^0.3.0",
|
2017-06-03 04:31:51 +08:00
|
|
|
"gulp": "^3.9.1",
|
2017-07-12 04:10:36 +08:00
|
|
|
"gulp-json-modify": "^1.0.2",
|
2017-12-18 00:50:50 +08:00
|
|
|
"gulp-typescript": "^3.2.3",
|
2017-06-03 05:21:05 +08:00
|
|
|
"gulp-zip": "^4.0.0",
|
2017-07-18 00:30:16 +08:00
|
|
|
"hammerjs": "^2.0.8",
|
2017-07-04 16:24:20 +08:00
|
|
|
"intl": "^1.2.5",
|
2017-10-20 00:08:07 +08:00
|
|
|
"jasmine-core": "^2.8.0",
|
|
|
|
"jasmine-spec-reporter": "~4.2.1",
|
2017-12-25 07:42:25 +08:00
|
|
|
"jw-bootstrap-switch-ng2": "1.0.8",
|
|
|
|
"karma": "^2.0.0",
|
2016-12-27 06:36:38 +08:00
|
|
|
"karma-cli": "^1.0.1",
|
2017-12-25 07:42:25 +08:00
|
|
|
"karma-coverage-istanbul-reporter": "^1.3.1",
|
2017-12-18 00:50:50 +08:00
|
|
|
"karma-jasmine": "^1.1.1",
|
2016-12-27 06:36:38 +08:00
|
|
|
"karma-jasmine-html-reporter": "^0.2.2",
|
2017-03-19 03:04:11 +08:00
|
|
|
"karma-phantomjs-launcher": "^1.0.4",
|
|
|
|
"karma-remap-istanbul": "^0.6.0",
|
2016-12-27 06:36:38 +08:00
|
|
|
"karma-systemjs": "^0.16.0",
|
2017-10-20 00:08:07 +08:00
|
|
|
"merge2": "^1.2.0",
|
|
|
|
"mocha": "^4.0.1",
|
2017-07-04 16:24:20 +08:00
|
|
|
"ng2-cookies": "^1.0.12",
|
|
|
|
"ng2-slim-loading-bar": "^4.0.0",
|
2017-07-08 18:43:42 +08:00
|
|
|
"ng2-toastr": "^4.1.2",
|
2017-12-18 00:50:50 +08:00
|
|
|
"ngx-bootstrap": "^2.0.0-rc.0",
|
|
|
|
"ngx-clipboard": "^9.0.0",
|
|
|
|
"phantomjs-prebuilt": "^2.1.16",
|
|
|
|
"protractor": "^5.2.2",
|
2017-03-26 04:58:41 +08:00
|
|
|
"remap-istanbul": "^0.9.5",
|
2017-10-20 00:08:07 +08:00
|
|
|
"rimraf": "^2.6.2",
|
|
|
|
"run-sequence": "^2.2.0",
|
2017-12-25 07:42:25 +08:00
|
|
|
"rxjs": "^5.5.6",
|
2016-12-27 06:36:38 +08:00
|
|
|
"ts-helpers": "^1.1.2",
|
2017-12-25 07:42:25 +08:00
|
|
|
"ts-node": "~4.1.0",
|
2017-12-18 00:50:50 +08:00
|
|
|
"tslint": "^5.8.0",
|
|
|
|
"typescript": "^2.6.2",
|
2017-10-20 00:08:07 +08:00
|
|
|
"zone.js": "^0.8.18"
|
2017-05-28 18:33:18 +08:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2017-10-20 00:08:07 +08:00
|
|
|
"bcrypt": "^1.0.3",
|
2017-06-12 05:33:47 +08:00
|
|
|
"gm": "^1.23.0",
|
2017-10-20 00:08:07 +08:00
|
|
|
"sharp": "^0.18.4"
|
2017-07-24 04:36:28 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 6.9"
|
2016-03-14 20:13:54 +08:00
|
|
|
}
|
2016-03-12 19:53:19 +08:00
|
|
|
}
|