Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-11-04 20:54:03 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-11-04 20:54:03 +0300
commit9c94a3e10fb3345ed57df27f44d51dde2f7ff733 (patch)
tree40557b1f1bc2ccf128638d825019f3e40a5acac7 /package.json
This is photos
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json92
1 files changed, 92 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 00000000..825f4348
--- /dev/null
+++ b/package.json
@@ -0,0 +1,92 @@
+{
+ "name": "photos",
+ "description": "Your memories under your control",
+ "version": "19.0.0",
+ "author": "John Molakvoæ <skjnldsv@protonmail.com>",
+ "contributors": [
+ "John Molakvoæ <skjnldsv@protonmail.com>"
+ ],
+ "keywords": [
+ "nextcloud",
+ "photos",
+ "app"
+ ],
+ "bugs": {
+ "url": "https://github.com/nextcloud/photos/issues"
+ },
+ "repository": {
+ "url": "https://github.com/nextcloud/photos",
+ "type": "git"
+ },
+ "homepage": "https://github.com/nextcloud/photos",
+ "license": "agpl",
+ "private": true,
+ "scripts": {
+ "build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
+ "dev": "NODE_ENV=development webpack --progress --config webpack.dev.js",
+ "watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
+ "lint": "eslint --ext .js,.vue src",
+ "lint:fix": "eslint --ext .js,.vue src --fix",
+ "stylelint": "stylelint src",
+ "stylelint:fix": "stylelint src --fix"
+ },
+ "dependencies": {
+ "@nextcloud/auth": "^0.3.1",
+ "@nextcloud/axios": "^0.5.0",
+ "@nextcloud/l10n": "^0.2.1",
+ "@nextcloud/router": "^0.1.0",
+ "@nextcloud/vue": "^1.0.0",
+ "cdav-library": "git+https://github.com/nextcloud/cdav-library.git",
+ "path-posix": "^1.0.0",
+ "qs": "^6.9.0",
+ "url-parse": "^1.4.7",
+ "vue": "^2.6.10",
+ "vue-router": "^3.1.3",
+ "vuex": "^3.1.1",
+ "vuex-router-sync": "^5.0.0",
+ "webdav": "^2.10.0"
+ },
+ "browserslist": [
+ "extends @nextcloud/browserslist-config"
+ ],
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.6.4",
+ "@babel/plugin-syntax-dynamic-import": "^7.2.0",
+ "@babel/preset-env": "^7.6.3",
+ "@nextcloud/browserslist-config": "^1.0.0",
+ "@vue/test-utils": "^1.0.0-beta.29",
+ "autoprefixer": "^9.7.0",
+ "babel-eslint": "^10.0.3",
+ "babel-loader": "^8.0.6",
+ "css-loader": "^3.2.0",
+ "eslint": "^5.16.0",
+ "eslint-config-nextcloud": "^0.1.0",
+ "eslint-config-standard": "^12.0.0",
+ "eslint-import-resolver-webpack": "^0.11.1",
+ "eslint-loader": "^3.0.2",
+ "eslint-plugin-import": "^2.18.2",
+ "eslint-plugin-nextcloud": "^0.3.0",
+ "eslint-plugin-node": "^10.0.0",
+ "eslint-plugin-promise": "^4.2.1",
+ "eslint-plugin-standard": "^4.0.1",
+ "eslint-plugin-vue": "^5.2.3",
+ "module-replace-webpack-plugin": "0.0.12",
+ "node-sass": "^4.12.0",
+ "node-sass-utils": "^1.1.2",
+ "postcss-loader": "^3.0.0",
+ "sass-loader": "^7.3.1",
+ "stylelint": "^8.4.0",
+ "stylelint-config-recommended-scss": "^3.3.0",
+ "stylelint-scss": "^3.12.0",
+ "stylelint-webpack-plugin": "^0.10.5",
+ "svg-inline-loader": "^0.8.0",
+ "vue-loader": "^15.7.1",
+ "vue-template-compiler": "^2.6.10",
+ "webpack": "^4.41.2",
+ "webpack-cli": "^3.3.9",
+ "webpack-merge": "^4.2.2"
+ }
+}