1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/package.json

117 lines
3.3 KiB
JSON
Raw Normal View History

2016-03-12 12:53:19 +01:00
{
2017-06-02 23:48:46 +02:00
"name": "pigallery2",
2017-07-26 20:10:08 +02:00
"version": "1.0.0-rc.1",
"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",
"main": "./backend/index.js",
"bin": "./backend/index.js",
2016-03-12 12:53:19 +01:00
"scripts": {
2017-07-21 00:15:02 +02:00
"install": "tsc && ng build -prod",
2017-07-26 19:43:06 +02:00
"build-release": "gulp build-release",
2017-06-10 22:56:23 +02:00
"pretest": "tsc",
"test": "ng test --single-run && mocha --recursive test/backend/unit",
"start": "node ./backend/index",
"ng": "ng",
"lint": "ng lint",
"e2e": "ng e2e"
2016-03-12 12:53:19 +01:00
},
2016-03-18 16:02:26 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/bpatrik/PiGallery2.git"
},
"bugs": {
"url": "https://github.com/bpatrik/PiGallery2/issues"
},
2016-03-12 12:53:19 +01:00
"dependencies": {
2017-07-11 22:10:36 +02:00
"bcryptjs": "2.4.3",
2017-10-19 12:08:07 -04:00
"body-parser": "1.18.2",
"cookie-session": "^2.0.0-beta.3",
2017-07-30 09:56:43 +02:00
"ejs": "2.5.7",
2017-10-19 12:08:07 -04:00
"express": "4.16.2",
2017-07-11 22:10:36 +02:00
"jimp": "0.2.28",
2017-10-19 12:08:07 -04:00
"mysql": "^2.15.0",
2017-07-11 22:10:36 +02:00
"reflect-metadata": "0.1.10",
2017-10-19 12:08:07 -04:00
"sqlite3": "^3.1.13",
2017-07-18 23:27:14 +02:00
"ts-exif-parser": "^0.1.23",
2017-07-19 10:21:52 +02:00
"ts-node-iptc": "^1.0.9",
"typeconfig": "1.0.4",
2017-10-19 12:08:07 -04:00
"typeorm": "0.1.1",
"winston": "2.4.0"
2016-12-26 23:36:38 +01:00
},
"devDependencies": {
2017-10-19 12:08:07 -04:00
"@agm/core": "^1.0.0-beta.1",
"@angular/animations": "^4.4.6",
"@angular/cli": "1.4.8",
"@angular/common": "~4.4.6",
"@angular/compiler": "~4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/core": "~4.4.6",
"@angular/forms": "~4.4.6",
"@angular/http": "~4.4.6",
"@angular/language-service": "^4.4.6",
"@angular/platform-browser": "~4.4.6",
"@angular/platform-browser-dynamic": "~4.4.6",
"@angular/router": "~4.4.6",
"@types/bcryptjs": "^2.4.1",
"@types/chai": "^4.0.4",
"@types/cookie-session": "^2.0.33",
"@types/express": "^4.0.37",
"@types/gm": "^1.17.33",
"@types/jasmine": "^2.6.0",
"@types/jimp": "^0.2.1",
2017-10-19 12:08:07 -04:00
"@types/node": "^8.0.45",
"@types/sharp": "^0.17.4",
"@types/winston": "^2.3.6",
2017-07-15 12:47:11 +02:00
"bootstrap": "^3.3.7",
2017-10-19 12:08:07 -04:00
"chai": "^4.1.2",
"codelyzer": "~3.2.1",
"core-js": "^2.5.1",
"ejs-loader": "^0.3.0",
2017-06-02 22:31:51 +02:00
"gulp": "^3.9.1",
2017-07-11 22:10:36 +02:00
"gulp-json-modify": "^1.0.2",
2017-10-19 12:08:07 -04:00
"gulp-typescript": "^3.2.2",
2017-06-02 23:21:05 +02:00
"gulp-zip": "^4.0.0",
2017-07-17 18:30:16 +02:00
"hammerjs": "^2.0.8",
"intl": "^1.2.5",
2017-10-19 12:08:07 -04:00
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"jw-bootstrap-switch-ng2": "^1.0.6",
"karma": "^1.7.1",
2016-12-26 23:36:38 +01:00
"karma-cli": "^1.0.1",
2017-06-21 11:32:34 +02:00
"karma-coverage-istanbul-reporter": "^1.3.0",
2016-12-29 15:18:23 +01:00
"karma-jasmine": "^1.1.0",
2016-12-26 23:36:38 +01:00
"karma-jasmine-html-reporter": "^0.2.2",
2017-03-18 20:04:11 +01:00
"karma-phantomjs-launcher": "^1.0.4",
"karma-remap-istanbul": "^0.6.0",
2016-12-26 23:36:38 +01:00
"karma-systemjs": "^0.16.0",
2017-10-19 12:08:07 -04:00
"merge2": "^1.2.0",
"mocha": "^4.0.1",
"ng2-cookies": "^1.0.12",
"ng2-slim-loading-bar": "^4.0.0",
2017-07-08 12:43:42 +02:00
"ng2-toastr": "^4.1.2",
2017-10-19 12:08:07 -04:00
"ngx-bootstrap": "^1.9.3",
"ngx-clipboard": "^8.1.1",
"phantomjs-prebuilt": "^2.1.15",
"protractor": "^5.2.0",
2017-03-25 21:58:41 +01:00
"remap-istanbul": "^0.9.5",
2017-10-19 12:08:07 -04:00
"rimraf": "^2.6.2",
"run-sequence": "^2.2.0",
"rxjs": "^5.5.0",
2016-12-26 23:36:38 +01:00
"ts-helpers": "^1.1.2",
2017-07-26 19:00:52 +02:00
"ts-node": "~3.3.0",
2017-10-19 12:08:07 -04:00
"tslint": "^5.7.0",
"typescript": "^2.5.3",
"zone.js": "^0.8.18"
},
"optionalDependencies": {
2017-10-19 12:08:07 -04:00
"bcrypt": "^1.0.3",
"gm": "^1.23.0",
2017-10-19 12:08:07 -04:00
"sharp": "^0.18.4"
2017-07-23 22:36:28 +02:00
},
"engines": {
"node": ">= 6.9"
2016-03-14 13:13:54 +01:00
}
2016-03-12 12:53:19 +01:00
}