2018-12-11 22:56:46 +03:00
|
|
|
{
|
|
|
|
"name": "nextcloud",
|
2020-03-21 12:36:25 +03:00
|
|
|
"version": "1.0.0",
|
2018-12-11 22:56:46 +03:00
|
|
|
"description": "Nextcloud Server",
|
|
|
|
"private": true,
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib",
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-12-28 17:29:54 +03:00
|
|
|
"build": "webpack --node-env production --progress",
|
2022-12-06 16:35:48 +03:00
|
|
|
"postbuild": "npm run sass && npm run sass:icons",
|
2022-12-28 17:29:54 +03:00
|
|
|
"dev": "webpack --node-env development --progress",
|
|
|
|
"watch": "webpack --node-env development --progress --watch",
|
2024-03-25 14:58:46 +03:00
|
|
|
"lint": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"$appdir \"; fi; done) core --no-error-on-unmatched-pattern",
|
|
|
|
"lint:fix": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"$appdir \"; fi; done) core --no-error-on-unmatched-pattern --fix",
|
2021-05-30 00:53:04 +03:00
|
|
|
"test": "jest",
|
2022-01-18 13:26:34 +03:00
|
|
|
"test:watch": "jest --watch",
|
2023-06-20 13:12:56 +03:00
|
|
|
"test:coverage": "jest --coverage",
|
2022-05-10 17:47:48 +03:00
|
|
|
"test:jsunit": "karma start tests/karma.config.js --single-run",
|
2024-03-25 14:58:46 +03:00
|
|
|
"sass": "sass --style compressed --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
|
|
|
|
"sass:watch": "sass --watch --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
|
2022-10-20 17:03:19 +03:00
|
|
|
"sass:icons": "babel-node core/src/icons.js",
|
2023-01-04 13:55:43 +03:00
|
|
|
"cypress": "npm run cypress:component && npm run cypress:e2e",
|
2022-12-28 17:29:54 +03:00
|
|
|
"cypress:component": "cypress run --component",
|
2023-01-04 13:55:43 +03:00
|
|
|
"cypress:e2e": "cypress run --e2e",
|
2023-09-22 17:48:21 +03:00
|
|
|
"cypress:gui": "cypress open",
|
|
|
|
"cypress:version": "cypress version"
|
2018-12-11 22:56:46 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/nextcloud/server.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"nextcloud"
|
|
|
|
],
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"dependencies": {
|
2020-01-19 05:18:19 +03:00
|
|
|
"@chenfengyuan/vue-qrcode": "^1.0.2",
|
2024-02-03 05:22:57 +03:00
|
|
|
"@mdi/js": "^7.4.47",
|
2024-02-22 15:55:16 +03:00
|
|
|
"@mdi/svg": "^7.4.47",
|
2023-06-14 11:36:21 +03:00
|
|
|
"@nextcloud/auth": "^2.1.0",
|
|
|
|
"@nextcloud/axios": "^2.3.0",
|
2024-02-20 21:36:19 +03:00
|
|
|
"@nextcloud/browser-storage": "^0.3.0",
|
2023-09-19 14:46:11 +03:00
|
|
|
"@nextcloud/browserslist-config": "^3.0.0",
|
2024-02-26 16:03:12 +03:00
|
|
|
"@nextcloud/calendar-availability-vue": "^2.2.0",
|
2021-04-10 04:21:15 +03:00
|
|
|
"@nextcloud/capabilities": "^1.0.4",
|
2024-04-09 20:34:13 +03:00
|
|
|
"@nextcloud/dialogs": "^5.3.0",
|
2023-06-10 07:35:38 +03:00
|
|
|
"@nextcloud/event-bus": "^3.1.0",
|
2024-03-28 14:05:52 +03:00
|
|
|
"@nextcloud/files": "^3.1.1",
|
2022-12-01 16:34:23 +03:00
|
|
|
"@nextcloud/initial-state": "^2.0.0",
|
2023-01-22 14:35:51 +03:00
|
|
|
"@nextcloud/l10n": "^2.1.0",
|
2023-01-11 22:46:15 +03:00
|
|
|
"@nextcloud/logger": "^2.5.0",
|
2024-02-23 16:12:00 +03:00
|
|
|
"@nextcloud/moment": "^1.3.1",
|
2023-11-28 21:34:43 +03:00
|
|
|
"@nextcloud/password-confirmation": "^5.0.1",
|
2021-10-02 23:24:24 +03:00
|
|
|
"@nextcloud/paths": "^2.1.0",
|
2024-03-23 20:54:48 +03:00
|
|
|
"@nextcloud/router": "^3.0.0",
|
2022-01-26 17:33:36 +03:00
|
|
|
"@nextcloud/sharing": "^0.1.0",
|
2024-04-15 19:21:03 +03:00
|
|
|
"@nextcloud/upload": "^1.1.1",
|
2024-04-12 02:11:35 +03:00
|
|
|
"@nextcloud/vue": "^8.11.2",
|
2024-04-10 06:30:10 +03:00
|
|
|
"@simplewebauthn/browser": "^9.0.1",
|
2022-11-09 15:10:42 +03:00
|
|
|
"@skjnldsv/sanitize-svg": "^1.0.2",
|
2024-04-16 14:46:25 +03:00
|
|
|
"@vueuse/components": "^10.9.0",
|
|
|
|
"@vueuse/core": "^10.9.0",
|
2024-03-16 16:10:43 +03:00
|
|
|
"@vueuse/integrations": "^10.9.0",
|
2022-02-28 05:43:47 +03:00
|
|
|
"backbone": "^1.4.1",
|
2021-10-02 04:02:47 +03:00
|
|
|
"blueimp-md5": "^2.19.0",
|
2024-02-21 20:09:55 +03:00
|
|
|
"browserslist-useragent-regexp": "^4.1.1",
|
2023-09-19 13:24:16 +03:00
|
|
|
"camelcase": "^8.0.0",
|
2023-04-04 12:42:41 +03:00
|
|
|
"cancelable-promise": "^4.3.1",
|
2022-12-06 19:26:44 +03:00
|
|
|
"clipboard": "^2.0.11",
|
2024-03-23 14:31:35 +03:00
|
|
|
"core-js": "^3.36.1",
|
2024-03-16 05:29:57 +03:00
|
|
|
"davclient.js": "github:owncloud/davclient.js.git#0.2.2",
|
2021-03-27 05:19:33 +03:00
|
|
|
"debounce": "^1.2.1",
|
2024-03-23 05:22:39 +03:00
|
|
|
"dompurify": "^3.0.11",
|
2019-10-04 14:23:32 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2023-11-04 05:15:46 +03:00
|
|
|
"focus-trap": "^7.5.4",
|
2021-03-09 21:18:12 +03:00
|
|
|
"handlebars": "^4.7.7",
|
2021-06-10 21:15:13 +03:00
|
|
|
"ical.js": "^1.4.0",
|
2023-09-22 02:45:35 +03:00
|
|
|
"jquery": "~3.7",
|
2022-07-28 20:29:58 +03:00
|
|
|
"jquery-ui": "^1.13.2",
|
2022-10-16 21:07:36 +03:00
|
|
|
"jquery-ui-dist": "^1.13.2",
|
2024-04-05 16:04:13 +03:00
|
|
|
"libphonenumber-js": "^1.10.60",
|
2021-03-02 12:25:58 +03:00
|
|
|
"lodash": "^4.17.21",
|
2024-01-27 06:40:36 +03:00
|
|
|
"marked": "^11.2.0",
|
2024-01-31 16:59:16 +03:00
|
|
|
"moment": "^2.30.1",
|
2024-02-20 13:14:38 +03:00
|
|
|
"moment-timezone": "^0.5.45",
|
2023-03-24 11:41:40 +03:00
|
|
|
"natural-orderby": "^3.0.2",
|
2024-02-06 12:50:19 +03:00
|
|
|
"nextcloud-vue-collections": "^0.12.0",
|
2022-10-20 17:03:19 +03:00
|
|
|
"node-vibrant": "^3.1.6",
|
2021-09-23 02:18:29 +03:00
|
|
|
"p-limit": "^4.0.0",
|
2023-10-28 04:33:50 +03:00
|
|
|
"p-queue": "^7.4.1",
|
2021-12-02 16:50:49 +03:00
|
|
|
"path": "^0.12.7",
|
2023-11-04 05:18:16 +03:00
|
|
|
"pinia": "^2.1.7",
|
2024-03-09 05:29:10 +03:00
|
|
|
"query-string": "^9.0.0",
|
2024-02-21 20:09:33 +03:00
|
|
|
"regenerator-runtime": "^0.14.1",
|
2019-09-27 09:11:44 +03:00
|
|
|
"select2": "3.5.1",
|
2018-12-11 22:56:46 +03:00
|
|
|
"snap.js": "^2.0.9",
|
2021-12-06 10:25:57 +03:00
|
|
|
"strengthify": "github:nextcloud/strengthify#0.5.9",
|
2023-01-04 21:06:52 +03:00
|
|
|
"throttle-debounce": "^5.0.0",
|
2023-04-22 06:02:25 +03:00
|
|
|
"underscore": "1.13.6",
|
2021-03-27 05:24:16 +03:00
|
|
|
"url-search-params-polyfill": "^8.1.1",
|
2022-08-09 21:45:36 +03:00
|
|
|
"v-click-outside": "^3.2.0",
|
2021-05-29 13:00:22 +03:00
|
|
|
"v-tooltip": "^2.1.3",
|
2024-01-19 21:08:04 +03:00
|
|
|
"vue": "^2.7.16",
|
2020-04-24 17:39:34 +03:00
|
|
|
"vue-click-outside": "^1.1.0",
|
2022-07-30 03:32:16 +03:00
|
|
|
"vue-cropperjs": "^4.2.0",
|
2023-04-12 19:43:09 +03:00
|
|
|
"vue-frag": "^1.4.2",
|
2020-03-07 16:30:41 +03:00
|
|
|
"vue-infinite-loading": "^2.4.5",
|
2019-02-20 11:06:56 +03:00
|
|
|
"vue-localstorage": "^0.6.2",
|
2022-02-14 15:26:00 +03:00
|
|
|
"vue-material-design-icons": "^5.0.0",
|
2023-03-22 15:31:33 +03:00
|
|
|
"vue-router": "^3.6.5",
|
2020-10-31 17:37:39 +03:00
|
|
|
"vuedraggable": "^2.24.3",
|
2021-02-03 00:17:14 +03:00
|
|
|
"vuex": "^3.6.2",
|
2020-10-04 16:33:17 +03:00
|
|
|
"vuex-router-sync": "^5.0.0",
|
2024-03-02 05:59:49 +03:00
|
|
|
"webdav": "^5.4.0",
|
2023-11-08 20:38:44 +03:00
|
|
|
"xml2js": "^0.6.2"
|
2018-12-11 22:56:46 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-12 04:25:48 +03:00
|
|
|
"@babel/node": "^7.22.10",
|
2024-03-28 14:05:32 +03:00
|
|
|
"@babel/preset-typescript": "^7.24.1",
|
2024-03-16 05:33:31 +03:00
|
|
|
"@cypress/vue2": "^2.1.0",
|
2024-02-20 13:19:19 +03:00
|
|
|
"@cypress/webpack-preprocessor": "^6.0.1",
|
2023-10-10 16:56:26 +03:00
|
|
|
"@jest/globals": "^29.7.0",
|
2021-07-22 14:06:17 +03:00
|
|
|
"@nextcloud/babel-config": "^1.0.0",
|
2024-02-03 05:22:39 +03:00
|
|
|
"@nextcloud/cypress": "^1.0.0-beta.7",
|
2023-06-27 12:44:59 +03:00
|
|
|
"@nextcloud/eslint-config": "^v8.3.0-beta.2",
|
2024-02-20 13:18:36 +03:00
|
|
|
"@nextcloud/stylelint-config": "^2.4.0",
|
2024-02-22 12:20:21 +03:00
|
|
|
"@nextcloud/typings": "^1.8.0",
|
2024-02-23 16:12:00 +03:00
|
|
|
"@nextcloud/webpack-vue-config": "^6.0.1",
|
2023-07-12 17:57:24 +03:00
|
|
|
"@pinia/testing": "^0.1.2",
|
2024-04-10 06:30:10 +03:00
|
|
|
"@simplewebauthn/types": "^9.0.1",
|
2023-12-23 05:43:47 +03:00
|
|
|
"@testing-library/jest-dom": "^6.1.5",
|
2022-08-09 21:46:48 +03:00
|
|
|
"@testing-library/user-event": "^14.4.3",
|
2022-05-14 04:02:21 +03:00
|
|
|
"@testing-library/vue": "^5.8.3",
|
2024-03-09 05:29:44 +03:00
|
|
|
"@types/dockerode": "^3.3.26",
|
2023-06-14 11:50:08 +03:00
|
|
|
"@types/jest": "^29.5.2",
|
2024-01-20 05:27:48 +03:00
|
|
|
"@types/wait-on": "^5.3.4",
|
2023-04-21 12:04:08 +03:00
|
|
|
"@vue/test-utils": "^1.3.5",
|
2024-02-10 05:37:13 +03:00
|
|
|
"@vue/tsconfig": "^0.5.1",
|
2023-09-25 17:45:14 +03:00
|
|
|
"@vue/vue2-jest": "^29.2.6",
|
2023-08-26 07:21:38 +03:00
|
|
|
"babel-jest": "^29.6.4",
|
2022-12-28 17:29:54 +03:00
|
|
|
"babel-loader": "^9.1.0",
|
2021-07-17 04:06:59 +03:00
|
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
2023-10-05 15:55:22 +03:00
|
|
|
"colord": "^2.9.3",
|
2023-06-08 10:52:10 +03:00
|
|
|
"css-loader": "^6.8.1",
|
2024-04-10 11:30:41 +03:00
|
|
|
"cypress": "^13.7.2",
|
2023-10-05 15:55:22 +03:00
|
|
|
"cypress-axe": "^1.5.0",
|
2023-10-18 16:02:32 +03:00
|
|
|
"cypress-if": "^1.10.5",
|
2024-04-10 11:52:59 +03:00
|
|
|
"cypress-split": "^1.23.0",
|
2024-02-10 05:36:46 +03:00
|
|
|
"cypress-wait-until": "^3.0.1",
|
2024-02-20 13:14:16 +03:00
|
|
|
"dockerode": "^4.0.2",
|
2024-04-20 05:50:52 +03:00
|
|
|
"eslint-plugin-cypress": "^2.15.2",
|
2021-12-03 19:25:57 +03:00
|
|
|
"eslint-plugin-es": "^4.1.0",
|
2024-02-24 05:08:41 +03:00
|
|
|
"exports-loader": "^5.0.0",
|
2020-10-31 07:59:26 +03:00
|
|
|
"file-loader": "^6.2.0",
|
2022-12-09 09:46:30 +03:00
|
|
|
"handlebars-loader": "^1.7.3",
|
2022-01-18 13:26:34 +03:00
|
|
|
"jasmine-core": "~2.5.2",
|
|
|
|
"jasmine-sinon": "^0.4.0",
|
2022-09-26 16:24:15 +03:00
|
|
|
"jest": "^29.0.3",
|
2023-10-28 04:33:24 +03:00
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2023-08-16 13:30:01 +03:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2023-06-21 18:10:06 +03:00
|
|
|
"jest-location-mock": "^1.0.9",
|
2023-04-06 18:09:13 +03:00
|
|
|
"jsdoc": "^4.0.2",
|
2024-03-16 05:30:20 +03:00
|
|
|
"karma": "^6.4.3",
|
2022-03-14 14:22:02 +03:00
|
|
|
"karma-chrome-launcher": "^3.1.1",
|
2022-02-12 05:04:21 +03:00
|
|
|
"karma-coverage": "2.2.0",
|
2022-01-18 13:26:34 +03:00
|
|
|
"karma-jasmine": "^1.1.2",
|
|
|
|
"karma-jasmine-sinon": "^1.0.4",
|
2023-04-22 04:59:15 +03:00
|
|
|
"karma-spec-reporter": "^0.0.36",
|
2022-04-08 20:32:57 +03:00
|
|
|
"karma-viewport": "^1.0.9",
|
2024-04-02 12:28:59 +03:00
|
|
|
"mime": "^4.0.1",
|
2024-03-16 05:33:55 +03:00
|
|
|
"puppeteer": "^22.5.0",
|
2023-10-05 15:55:22 +03:00
|
|
|
"raw-loader": "^4.0.2",
|
2022-02-14 16:05:15 +03:00
|
|
|
"regextras": "^0.8.0",
|
2024-04-06 04:36:59 +03:00
|
|
|
"sass": "^1.74.1",
|
2023-04-15 04:58:01 +03:00
|
|
|
"sass-loader": "^13.2.2",
|
2022-02-14 16:05:15 +03:00
|
|
|
"sinon": "<= 5.0.7",
|
|
|
|
"style-loader": "^3.3.1",
|
2024-03-23 05:23:31 +03:00
|
|
|
"tar": "^6.2.1",
|
2023-08-22 20:42:21 +03:00
|
|
|
"ts-jest": "^29.1.1",
|
2023-10-14 06:09:38 +03:00
|
|
|
"ts-loader": "^9.5.0",
|
2022-10-20 17:03:19 +03:00
|
|
|
"ts-node": "^10.9.1",
|
2023-08-22 20:42:21 +03:00
|
|
|
"tslib": "^2.6.2",
|
2024-04-13 05:40:05 +03:00
|
|
|
"typescript": "^5.4.5",
|
2022-02-14 16:05:15 +03:00
|
|
|
"vue-loader": "^15.9.8",
|
2024-01-19 21:08:04 +03:00
|
|
|
"vue-template-compiler": "^2.7.16",
|
2023-11-18 05:27:25 +03:00
|
|
|
"wait-on": "^7.2.0",
|
2024-03-23 13:55:23 +03:00
|
|
|
"webpack": "^5.91.0",
|
2023-05-06 04:58:27 +03:00
|
|
|
"webpack-cli": "^5.0.2",
|
2023-03-17 18:58:24 +03:00
|
|
|
"webpack-merge": "^5.8.0",
|
2023-09-30 04:24:49 +03:00
|
|
|
"workbox-webpack-plugin": "^7.0.0"
|
2019-06-18 11:13:01 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
2019-10-22 17:00:58 +03:00
|
|
|
"extends @nextcloud/browserslist-config"
|
2019-05-23 18:03:04 +03:00
|
|
|
],
|
2021-12-06 10:25:57 +03:00
|
|
|
"engines": {
|
2023-06-21 13:47:16 +03:00
|
|
|
"node": "^20.0.0",
|
2024-01-16 16:20:19 +03:00
|
|
|
"npm": "^10.0.0"
|
2021-12-06 10:25:57 +03:00
|
|
|
},
|
2022-01-18 13:26:34 +03:00
|
|
|
"overrides": {
|
|
|
|
"colors": "1.4.0"
|
2019-05-23 18:03:04 +03:00
|
|
|
}
|
2022-02-14 16:05:15 +03:00
|
|
|
}
|