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

81 lines
2.3 KiB
JSON
Raw Normal View History

2016-03-12 19:53:19 +08:00
{
"name": "PiGallery2",
2016-12-27 23:09:47 +08:00
"version": "0.1.0",
2016-03-12 19:53:19 +08:00
"private": true,
"description": "This is a photo gallery optimised for running low resource servers (especially on raspberry pi)",
"author": "Braun Patrik",
"homepage": "https://github.com/bpatrik/PiGallery2",
"license": "MIT",
2016-03-14 18:29:10 +08:00
"main": "./backend/server.js",
2016-03-12 19:53:19 +08:00
"scripts": {
2016-12-28 18:50:05 +08:00
"postinstall": "tsc",
"pretest": "tsc",
2016-12-27 06:36:38 +08:00
"test": "karma start karma.conf.js --single-run && mocha --recursive test/backend/unit",
2016-06-16 21:19:40 +08:00
"start": "node ./backend/server"
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": {
2016-12-27 06:36:38 +08:00
"@angular/common": "~2.4.1",
"@angular/compiler": "~2.4.1",
"@angular/core": "~2.4.1",
"@angular/forms": "~2.4.1",
"@angular/http": "~2.4.1",
"@angular/platform-browser": "~2.4.1",
"@angular/platform-browser-dynamic": "~2.4.1",
"@angular/platform-server": "~2.4.1",
"@angular/router": "~3.4.1",
2016-07-03 21:41:12 +08:00
"body-parser": "^1.15.2",
2016-12-27 23:09:47 +08:00
"core-js": "^2.4.1",
2016-12-29 22:18:23 +08:00
"debug": "^2.6.0",
2016-12-27 06:36:38 +08:00
"ejs": "^2.5.5",
"exif-parser": "^0.1.9",
"express": "^4.14.0",
2016-12-27 06:36:38 +08:00
"express-session": "^1.14.2",
"flat-file-db": "^1.0.0",
2016-12-27 06:36:38 +08:00
"jimp": "^0.2.27",
"mime": "^1.3.4",
2016-12-27 06:36:38 +08:00
"mocha": "^3.2.0",
"morgan": "^1.7.0",
2016-12-27 23:09:47 +08:00
"mysql": "^2.12.0",
2016-12-27 06:36:38 +08:00
"ng2-cookies": "^1.0.4",
"node-iptc": "^1.0.4",
2016-12-27 23:09:47 +08:00
"optimist": "^0.6.1",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.0.2",
"systemjs": "0.19.41",
2016-12-29 22:18:23 +08:00
"typeorm": "0.0.6",
2016-12-27 23:09:47 +08:00
"zone.js": "^0.7.4"
2016-12-27 06:36:38 +08:00
},
"devDependencies": {
"@types/express": "^4.0.34",
"@types/express-session": "0.0.32",
2016-12-29 22:18:23 +08:00
"@types/jasmine": "^2.5.39",
2016-12-27 23:09:47 +08:00
"@types/node": "^6.0.54",
2016-12-27 06:36:38 +08:00
"@types/optimist": "0.0.29",
"angular-cli": "^1.0.0-beta.24",
"chai": "^3.5.0",
"jasmine-core": "^2.5.2",
2016-12-29 22:18:23 +08:00
"karma": "^1.3.0",
2016-12-27 06:36:38 +08:00
"karma-cli": "^1.0.1",
2016-12-29 22:18:23 +08:00
"karma-jasmine": "^1.1.0",
2016-12-27 06:36:38 +08:00
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.2",
2016-12-29 22:18:23 +08:00
"karma-remap-istanbul": "^0.4.0",
2016-12-27 06:36:38 +08:00
"karma-systemjs": "^0.16.0",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"protractor": "^4.0.14",
"remap-istanbul": "^0.8.4",
"rimraf": "^2.5.4",
"ts-helpers": "^1.1.2",
"tslint": "^4.2.0",
"typescript": "^2.1.4"
2016-03-14 20:13:54 +08:00
}
2016-03-12 19:53:19 +08:00
}