summaryrefslogtreecommitdiffstats
path: root/package.json
blob: 7c76c09ee5bac8bc858ea57b6a2ed84985a5fd83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0
{
  "name": "nextcloud",
  "version": "1.0.0",
  "description": "Nextcloud Server",
  "private": true,
  "directories": {
    "lib": "lib",
    "test": "tests"
  },
  "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:fix": "ESLINT_FIX=true webpack --progress --config webpack.dev.js",
    "lint:fix-watch": "ESLINT_FIX=true webpack --progress --watch --config webpack.dev.js",
    "test": "mochapack --webpack-config core/webpack.test.js --require core/src/tests/setup.js \"core/src/tests/**/*.spec.js\"",
    "test:watch": "mochapack -w --webpack-config core/webpack.test.js --require core/src/tests/setup.js \"core/src/tests/**/*.spec.js\""
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nextcloud/server.git"
  },
  "keywords": [
    "nextcloud"
  ],
  "license": "AGPL-3.0-or-later",
  "dependencies": {
    "@chenfengyuan/vue-qrcode": "^1.0.2",
    "@nextcloud/auth": "^1.3.0",
    "@nextcloud/axios": "^1.3.3",
    "@nextcloud/capabilities": "^1.0.2",
    "@nextcloud/dialogs": "^3.0.0",
    "@nextcloud/event-bus": "^1.2.0",
    "@nextcloud/files": "^1.1.0",
    "@nextcloud/initial-state": "^1.2.0",
    "@nextcloud/l10n": "^1.4.1",
    "@nextcloud/logger": "^1.1.2",
    "@nextcloud/moment": "^1.1.1",
    "@nextcloud/password-confirmation": "^1.0.1",
    "@nextcloud/paths": "^1.1.2",
    "@nextcloud/router": "^1.1.0",
    "@nextcloud/vue": "^3.1.0",
    "@nextcloud/vue-dashboard": "^1.0.1",
    "autosize": "^4.0.2",
    "backbone": "^1.4.0",
    "blueimp-md5": "^2.18.0",
    "bootstrap": "^4.5.2",
    "camelcase": "^6.1.0",
    "clipboard": "^2.0.6",
    "core-js": "^3.6.5",
    "css-vars-ponyfill": "^2.3.2",
    "davclient.js": "git+https://github.com/owncloud/davclient.js.git#0.2.1",
    "debounce": "^1.2.0",
    "dompurify": "^2.2.0",
    "escape-html": "^1.0.3",
    "handlebars": "^4.7.6",
    "jcrop": "git+https://github.com/ChristophWurst/Jcrop.git#v0.9.12-npm3",
    "jquery": "2.2.4",
    "jquery-migrate": "^1.4.1",
    "jquery-ui": "^1.12.1",
    "jquery-ui-dist": "^1.12.1",
    "jstimezonedetect": "^1.0.7",
    "lodash": "^4.17.20",
    "marked": "^1.2.0",
    "moment": "^2.29.1",
    "moment-timezone": "^0.5.31",
    "nextcloud-vue-collections": "^0.8.1",
    "p-limit": "^3.0.2",
    "p-queue": "^6.6.2",
    "query-string": "^5.1.1",
    "regenerator-runtime": "^0.13.7",
    "select2": "3.5.1",
    "snap.js": "^2.0.9",
    "strengthify": "git+https://github.com/MorrisJobke/strengthify.git#0.5.9",
    "underscore": "^1.11.0",
    "url-search-params-polyfill": "^8.0.0",
    "v-click-outside": "^3.1.2",
    "v-tooltip": "^2.0.3",
    "vue": "^2.6.12",
    "vue-click-outside": "^1.1.0",
    "vue-clipboard2": "^0.3.1",
    "vue-infinite-loading": "^2.4.5",
    "vue-localstorage": "^0.6.2",
    "vue-material-design-icons": "^4.9.0",
    "vue-multiselect": "^2.1.6",
    "vue-router": "^3.4.7",
    "vuedraggable": "^2.24.2",
    "vuex": "^3.5.1",
    "vuex-router-sync": "^5.0.0",
    "webdav": "^3.6.1"
  },
  "devDependencies": {
    "@babel/core": "^7.12.3",
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/preset-env": "^7.12.1",
    "@nextcloud/browserslist-config": "^1.0.0",
    "@nextcloud/eslint-config": "^2.2.0",
    "@nextcloud/eslint-plugin": "^1.5.0",
    "babel-eslint": "^10.1.0",
    "babel-loader": "^8.1.0",
    "babel-loader-exclude-node-modules-except": "^1.0.3",
    "chai": "^4.2.0",
    "css-loader": "^3.6.0",
    "eslint": "^6.8.0",
    "eslint-config-standard": "^14.1.1",
    "eslint-loader": "^4.0.2",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "eslint-plugin-vue": "^6.2.2",
    "exports-loader": "^1.1.1",
    "file-loader": "^6.1.1",
    "handlebars-loader": "^1.7.1",
    "jsdom": "^16.4.0",
    "jsdom-global": "^3.0.2",
    "mocha": "^7.1.2",
    "mochapack": "^2.0.6",
    "node-sass": "^4.14.1",
    "sass-loader": "^10.0.4",
    "sinon": "^9.2.0",
    "sinon-chai": "^3.5.0",
    "style-loader": "^2.0.0",
    "url-loader": "^4.1.1",
    "vue-loader": "^15.9.3",
    "vue-template-compiler": "^2.6.12",
    "webpack": "^4.44.2",
    "webpack-cli": "^3.3.12",
    "webpack-merge": "^5.2.0",
    "webpack-node-externals": "^2.5.2"
  },
  "browserslist": [
    "extends @nextcloud/browserslist-config"
  ],
  "engines": {
    "node": ">=10.0.0"
  }
}