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

126 lines
3.8 KiB
JSON
Raw Normal View History

2016-03-12 19:53:19 +08:00
{
2017-06-03 05:48:46 +08:00
"name": "pigallery2",
2018-05-29 05:54:19 +08:00
"version": "1.2.0",
"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",
"main": "./backend/index.js",
"bin": "./backend/index.js",
2016-03-12 19:53:19 +08:00
"scripts": {
2018-03-31 03:52:00 +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",
2018-07-29 03:37:48 +08:00
"test": "ng test && mocha --recursive test/backend/unit && mocha --recursive test/backend/integration && mocha --recursive test/common/unit ",
"start": "node ./backend/index",
"ng": "ng",
"lint": "ng lint",
"e2e": "ng e2e",
2018-05-08 03:42:32 +08:00
"run-dev": "ng build --aot -w --output-path=./dist --locale en --i18n-format xlf --i18n-file frontend/translate/messages.en.xlf --missing-translation warning",
2018-03-30 08:30:23 +08:00
"update-translation": "gulp update-translation",
"add-translation": "gulp add-translation"
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",
2018-05-23 08:27:07 +08:00
"body-parser": "1.18.3",
2018-07-29 01:58:17 +08:00
"cookie-parser": "1.4.3",
2017-12-18 00:50:50 +08:00
"cookie-session": "2.0.0-beta.3",
2018-05-23 08:27:07 +08:00
"ejs": "2.6.1",
2018-03-30 08:30:23 +08:00
"express": "4.16.3",
2017-07-12 04:10:36 +08:00
"jimp": "0.2.28",
2018-01-16 08:37:18 +08:00
"locale": "0.1.0",
"reflect-metadata": "0.1.12",
2018-07-29 01:58:17 +08:00
"sqlite3": "4.0.2",
2018-07-29 03:27:05 +08:00
"ts-exif-parser": "0.1.24",
"ts-node-iptc": "1.0.10",
2018-01-16 08:37:18 +08:00
"typeconfig": "1.0.6",
2018-07-29 01:58:17 +08:00
"typeorm": "0.2.7",
2018-05-04 06:23:48 +08:00
"winston": "2.4.2"
2016-12-27 06:36:38 +08:00
},
"devDependencies": {
2018-05-25 09:29:05 +08:00
"@agm/core": "1.0.0-beta.3",
2018-07-29 01:58:17 +08:00
"@angular-devkit/build-angular": "0.7.1",
"@angular-devkit/build-optimizer": "0.7.1",
"@angular/animations": "6.1.0",
"@angular/cli": "6.1.1",
"@angular/common": "6.1.0",
"@angular/compiler": "6.1.0",
"@angular/compiler-cli": "6.1.0",
"@angular/core": "6.1.0",
"@angular/forms": "6.1.0",
"@angular/http": "6.1.0",
"@angular/language-service": "^6.1.0",
"@angular/platform-browser": "6.1.0",
"@angular/platform-browser-dynamic": "6.1.0",
"@angular/router": "6.1.0",
"@ngx-translate/i18n-polyfill": "1.0.0",
"@types/bcryptjs": "2.4.1",
2018-07-29 01:58:17 +08:00
"@types/chai": "4.1.4",
"@types/cookie-session": "2.0.35",
"@types/express": "4.16.0",
2018-05-23 08:27:07 +08:00
"@types/gm": "1.18.0",
2018-07-29 01:58:17 +08:00
"@types/jasmine": "2.8.8",
"@types/node": "10.5.4",
"@types/sharp": "0.17.9",
"@types/winston": "^2.3.9",
"bootstrap": "4.1.3",
"chai": "4.1.2",
2018-07-29 01:58:17 +08:00
"codelyzer": "4.4.2",
2018-05-27 09:54:22 +08:00
"core-js": "2.5.7",
"ejs-loader": "0.3.1",
"gulp": "3.9.1",
"gulp-json-modify": "1.0.2",
2018-07-29 01:58:17 +08:00
"gulp-typescript": "5.0.0-alpha.3",
"gulp-zip": "4.2.0",
"hammerjs": "2.0.8",
"intl": "1.2.5",
"jasmine-core": "3.1.0",
"jasmine-spec-reporter": "4.2.1",
2018-01-16 08:37:18 +08:00
"jw-bootstrap-switch-ng2": "1.0.10",
2018-07-29 01:58:17 +08:00
"karma": "2.0.5",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
2018-05-27 09:54:22 +08:00
"karma-coverage-istanbul-reporter": "2.0.1",
"karma-jasmine": "1.1.2",
2018-07-29 01:58:17 +08:00
"karma-jasmine-html-reporter": "1.2.0",
"karma-remap-istanbul": "0.6.0",
"karma-systemjs": "0.16.0",
2018-05-23 08:27:07 +08:00
"merge2": "1.2.2",
"mocha": "5.2.0",
"ng2-cookies": "1.0.12",
"ng2-slim-loading-bar": "4.0.0",
2018-07-29 01:58:17 +08:00
"ngx-bootstrap": "3.0.1",
"ngx-clipboard": "11.1.1",
"ngx-toastr": "8.10.0",
"open-iconic": "1.1.1",
2018-07-29 01:58:17 +08:00
"protractor": "5.4.0",
"remap-istanbul": "0.11.1",
"rimraf": "2.6.2",
"run-sequence": "2.2.1",
2018-07-29 01:58:17 +08:00
"rxjs": "6.2.2",
"rxjs-compat": "^6.2.2",
"ts-helpers": "1.1.2",
2018-07-29 01:58:17 +08:00
"ts-node": "7.0.0",
"tslint": "5.11.0",
"typescript": "2.9.2",
2018-05-28 23:16:54 +08:00
"xlf-google-translate": "1.0.0-beta.11",
"zone.js": "0.8.26"
},
"optionalDependencies": {
2018-07-29 01:58:17 +08:00
"mysql": "2.16.0",
"bcrypt": "3.0.0",
"gm": "1.23.1",
2018-07-29 01:58:17 +08:00
"sharp": "0.20.5"
2017-07-24 04:36:28 +08:00
},
"engines": {
2018-05-24 10:42:50 +08:00
"node": ">= 6.9 <10.0"
2016-03-14 20:13:54 +08:00
}
2016-03-12 19:53:19 +08:00
}