2018-12-11 14:56:46 -05:00
|
|
|
{
|
|
|
|
|
"name": "nextcloud",
|
2020-03-21 05:36:25 -04:00
|
|
|
"version": "1.0.0",
|
2018-12-11 14:56:46 -05:00
|
|
|
"description": "Nextcloud Server",
|
2024-06-12 15:37:42 -04:00
|
|
|
"author": "Nextcloud GmbH and Nextcloud contributors",
|
2018-12-11 14:56:46 -05:00
|
|
|
"private": true,
|
|
|
|
|
"directories": {
|
|
|
|
|
"lib": "lib",
|
|
|
|
|
"test": "tests"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2022-12-28 09:29:54 -05:00
|
|
|
"build": "webpack --node-env production --progress",
|
2024-06-12 15:20:30 -04:00
|
|
|
"postbuild": "build/npm-post-build.sh",
|
2022-12-28 09:29:54 -05:00
|
|
|
"dev": "webpack --node-env development --progress",
|
|
|
|
|
"watch": "webpack --node-env development --progress --watch",
|
2024-06-24 18:00:31 -04:00
|
|
|
"lint": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"apps/$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 \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern --fix",
|
2021-05-29 17:53:04 -04:00
|
|
|
"test": "jest",
|
2022-01-18 05:26:34 -05:00
|
|
|
"test:watch": "jest --watch",
|
2023-06-20 06:12:56 -04:00
|
|
|
"test:coverage": "jest --coverage",
|
2022-05-10 10:47:48 -04:00
|
|
|
"test:jsunit": "karma start tests/karma.config.js --single-run",
|
2024-03-25 07:58:46 -04: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 10:03:19 -04:00
|
|
|
"sass:icons": "babel-node core/src/icons.js",
|
2023-01-04 05:55:43 -05:00
|
|
|
"cypress": "npm run cypress:component && npm run cypress:e2e",
|
2022-12-28 09:29:54 -05:00
|
|
|
"cypress:component": "cypress run --component",
|
2023-01-04 05:55:43 -05:00
|
|
|
"cypress:e2e": "cypress run --e2e",
|
2023-09-22 10:48:21 -04:00
|
|
|
"cypress:gui": "cypress open",
|
|
|
|
|
"cypress:version": "cypress version"
|
2018-12-11 14:56:46 -05:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/nextcloud/server.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"nextcloud"
|
|
|
|
|
],
|
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
|
"dependencies": {
|
2020-01-18 21:18:19 -05:00
|
|
|
"@chenfengyuan/vue-qrcode": "^1.0.2",
|
2024-02-02 21:22:57 -05:00
|
|
|
"@mdi/js": "^7.4.47",
|
2024-02-22 07:55:16 -05:00
|
|
|
"@mdi/svg": "^7.4.47",
|
2024-08-13 11:54:47 -04:00
|
|
|
"@nextcloud/auth": "^2.4.0",
|
2024-09-21 00:12:22 -04:00
|
|
|
"@nextcloud/axios": "^2.5.1",
|
2024-05-02 16:14:17 -04:00
|
|
|
"@nextcloud/browser-storage": "^0.4.0",
|
2024-06-08 10:02:30 -04:00
|
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
2025-01-19 06:11:01 -05:00
|
|
|
"@nextcloud/calendar-availability-vue": "^2.2.6",
|
2024-07-10 14:00:18 -04:00
|
|
|
"@nextcloud/capabilities": "^1.2.0",
|
2024-11-05 04:19:15 -05:00
|
|
|
"@nextcloud/dialogs": "^6.0.1",
|
2024-05-28 04:37:11 -04:00
|
|
|
"@nextcloud/event-bus": "^3.3.1",
|
2025-01-16 17:47:24 -05:00
|
|
|
"@nextcloud/files": "^3.10.1",
|
2024-07-10 14:00:18 -04:00
|
|
|
"@nextcloud/initial-state": "^2.2.0",
|
2024-07-06 11:14:25 -04:00
|
|
|
"@nextcloud/l10n": "^3.1.0",
|
2024-06-08 11:04:40 -04:00
|
|
|
"@nextcloud/logger": "^3.0.2",
|
2025-01-03 21:32:07 -05:00
|
|
|
"@nextcloud/moment": "^1.3.2",
|
2025-01-17 21:22:31 -05:00
|
|
|
"@nextcloud/password-confirmation": "^5.3.1",
|
2024-08-03 02:36:09 -04:00
|
|
|
"@nextcloud/paths": "^2.2.1",
|
2024-03-23 13:54:48 -04:00
|
|
|
"@nextcloud/router": "^3.0.0",
|
2024-12-09 04:08:34 -05:00
|
|
|
"@nextcloud/sharing": "^0.2.4",
|
2025-01-21 11:27:58 -05:00
|
|
|
"@nextcloud/upload": "^1.8.0",
|
2024-08-23 21:08:12 -04:00
|
|
|
"@nextcloud/vue": "^8.17.1",
|
2024-04-19 22:15:39 -04:00
|
|
|
"@simplewebauthn/browser": "^10.0.0",
|
2022-11-09 07:10:42 -05:00
|
|
|
"@skjnldsv/sanitize-svg": "^1.0.2",
|
2024-06-22 07:56:30 -04:00
|
|
|
"@vueuse/components": "^10.11.0",
|
2024-09-27 21:27:22 -04:00
|
|
|
"@vueuse/core": "^10.11.1",
|
2024-06-22 07:56:30 -04:00
|
|
|
"@vueuse/integrations": "^10.11.0",
|
2022-02-27 21:43:47 -05:00
|
|
|
"backbone": "^1.4.1",
|
2021-10-01 21:02:47 -04:00
|
|
|
"blueimp-md5": "^2.19.0",
|
2024-02-21 12:09:55 -05:00
|
|
|
"browserslist-useragent-regexp": "^4.1.1",
|
2023-09-19 06:24:16 -04:00
|
|
|
"camelcase": "^8.0.0",
|
2023-04-04 05:42:41 -04:00
|
|
|
"cancelable-promise": "^4.3.1",
|
2022-12-06 11:26:44 -05:00
|
|
|
"clipboard": "^2.0.11",
|
2024-06-14 21:23:32 -04:00
|
|
|
"core-js": "^3.37.1",
|
2024-03-15 22:29:57 -04:00
|
|
|
"davclient.js": "github:owncloud/davclient.js.git#0.2.2",
|
2024-09-18 14:29:43 -04:00
|
|
|
"debounce": "^2.1.1",
|
2024-03-22 22:22:39 -04:00
|
|
|
"dompurify": "^3.0.11",
|
2019-10-04 07:23:32 -04:00
|
|
|
"escape-html": "^1.0.3",
|
2023-11-03 22:15:46 -04:00
|
|
|
"focus-trap": "^7.5.4",
|
2021-03-09 13:18:12 -05:00
|
|
|
"handlebars": "^4.7.7",
|
2024-06-05 17:43:04 -04:00
|
|
|
"is-svg": "^5.0.1",
|
2023-09-21 19:45:35 -04:00
|
|
|
"jquery": "~3.7",
|
2024-08-02 21:28:18 -04:00
|
|
|
"jquery-ui": "^1.13.3",
|
2024-06-14 21:22:52 -04:00
|
|
|
"jquery-ui-dist": "^1.13.3",
|
2025-01-17 21:21:20 -05:00
|
|
|
"libphonenumber-js": "^1.11.18",
|
2021-03-02 04:25:58 -05:00
|
|
|
"lodash": "^4.17.21",
|
2024-08-03 04:05:33 -04:00
|
|
|
"marked": "^13.0.3",
|
2024-01-31 08:59:16 -05:00
|
|
|
"moment": "^2.30.1",
|
2024-12-10 12:31:24 -05:00
|
|
|
"moment-timezone": "^0.5.46",
|
2024-02-06 04:50:19 -05:00
|
|
|
"nextcloud-vue-collections": "^0.12.0",
|
2022-10-20 10:03:19 -04:00
|
|
|
"node-vibrant": "^3.1.6",
|
2024-07-24 19:32:36 -04:00
|
|
|
"p-limit": "^6.1.0",
|
2023-10-27 21:33:50 -04:00
|
|
|
"p-queue": "^7.4.1",
|
2021-12-02 08:50:49 -05:00
|
|
|
"path": "^0.12.7",
|
2024-12-06 22:28:03 -05:00
|
|
|
"pinia": "^2.2.8",
|
2024-07-27 04:17:28 -04:00
|
|
|
"query-string": "^9.1.0",
|
2024-02-21 12:09:33 -05:00
|
|
|
"regenerator-runtime": "^0.14.1",
|
2019-09-27 02:11:44 -04:00
|
|
|
"select2": "3.5.1",
|
2018-12-11 14:56:46 -05:00
|
|
|
"snap.js": "^2.0.9",
|
2021-12-06 02:25:57 -05:00
|
|
|
"strengthify": "github:nextcloud/strengthify#0.5.9",
|
2024-07-19 21:23:54 -04:00
|
|
|
"throttle-debounce": "^5.0.2",
|
2023-04-21 23:02:25 -04:00
|
|
|
"underscore": "1.13.6",
|
2021-03-26 22:24:16 -04:00
|
|
|
"url-search-params-polyfill": "^8.1.1",
|
2022-08-09 14:45:36 -04:00
|
|
|
"v-click-outside": "^3.2.0",
|
2021-05-29 06:00:22 -04:00
|
|
|
"v-tooltip": "^2.1.3",
|
2024-01-19 13:08:04 -05:00
|
|
|
"vue": "^2.7.16",
|
2020-04-24 10:39:34 -04:00
|
|
|
"vue-click-outside": "^1.1.0",
|
2022-07-29 20:32:16 -04:00
|
|
|
"vue-cropperjs": "^4.2.0",
|
2023-04-12 12:43:09 -04:00
|
|
|
"vue-frag": "^1.4.2",
|
2020-03-07 08:30:41 -05:00
|
|
|
"vue-infinite-loading": "^2.4.5",
|
2019-02-20 03:06:56 -05:00
|
|
|
"vue-localstorage": "^0.6.2",
|
2025-01-04 13:18:01 -05:00
|
|
|
"vue-material-design-icons": "^5.3.1",
|
2023-03-22 08:31:33 -04:00
|
|
|
"vue-router": "^3.6.5",
|
2020-10-31 10:37:39 -04:00
|
|
|
"vuedraggable": "^2.24.3",
|
2021-02-02 16:17:14 -05:00
|
|
|
"vuex": "^3.6.2",
|
2020-10-04 09:33:17 -04:00
|
|
|
"vuex-router-sync": "^5.0.0",
|
2024-08-14 05:31:39 -04:00
|
|
|
"webdav": "^5.7.1"
|
2018-12-11 14:56:46 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-12-06 22:26:32 -05:00
|
|
|
"@babel/node": "^7.25.9",
|
2024-08-03 03:44:12 -04:00
|
|
|
"@babel/plugin-transform-private-methods": "^7.24.7",
|
2024-06-24 18:00:31 -04:00
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
|
|
|
"@cypress/vue2": "^2.1.1",
|
|
|
|
|
"@cypress/webpack-preprocessor": "^6.0.2",
|
2023-10-10 09:56:26 -04:00
|
|
|
"@jest/globals": "^29.7.0",
|
2024-06-24 18:00:31 -04:00
|
|
|
"@nextcloud/babel-config": "^1.2.0",
|
2024-12-06 22:27:11 -05:00
|
|
|
"@nextcloud/cypress": "^1.0.0-beta.12",
|
2024-06-24 18:00:31 -04:00
|
|
|
"@nextcloud/eslint-config": "^8.4.1",
|
2024-07-06 12:27:44 -04:00
|
|
|
"@nextcloud/stylelint-config": "^3.0.1",
|
2024-06-24 18:00:31 -04:00
|
|
|
"@nextcloud/typings": "^1.9.1",
|
2024-02-23 08:12:00 -05:00
|
|
|
"@nextcloud/webpack-vue-config": "^6.0.1",
|
2024-11-08 21:26:11 -05:00
|
|
|
"@pinia/testing": "^0.1.7",
|
2024-06-08 10:02:41 -04:00
|
|
|
"@simplewebauthn/types": "^10.0.0",
|
2025-01-23 04:26:15 -05:00
|
|
|
"@testing-library/cypress": "^10.0.3",
|
2024-07-26 22:03:42 -04:00
|
|
|
"@testing-library/jest-dom": "^6.4.8",
|
2022-08-09 14:46:48 -04:00
|
|
|
"@testing-library/user-event": "^14.4.3",
|
2022-05-13 21:02:21 -04:00
|
|
|
"@testing-library/vue": "^5.8.3",
|
2025-01-23 04:26:48 -05:00
|
|
|
"@types/dockerode": "^3.3.34",
|
2024-11-16 00:25:56 -05:00
|
|
|
"@types/jest": "^29.5.14",
|
2024-01-19 21:27:48 -05:00
|
|
|
"@types/wait-on": "^5.3.4",
|
2023-04-21 05:04:08 -04:00
|
|
|
"@vue/test-utils": "^1.3.5",
|
2024-02-09 21:37:13 -05:00
|
|
|
"@vue/tsconfig": "^0.5.1",
|
2023-09-25 10:45:14 -04:00
|
|
|
"@vue/vue2-jest": "^29.2.6",
|
2023-08-26 00:21:38 -04:00
|
|
|
"babel-jest": "^29.6.4",
|
2022-12-28 09:29:54 -05:00
|
|
|
"babel-loader": "^9.1.0",
|
2021-07-16 21:06:59 -04:00
|
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
2024-06-10 18:23:59 -04:00
|
|
|
"babel-plugin-module-resolver": "^5.0.2",
|
2023-10-05 08:55:22 -04:00
|
|
|
"colord": "^2.9.3",
|
2023-06-08 03:52:10 -04:00
|
|
|
"css-loader": "^6.8.1",
|
2024-11-01 22:16:45 -04:00
|
|
|
"cypress": "^13.13.3",
|
2023-10-05 08:55:22 -04:00
|
|
|
"cypress-axe": "^1.5.0",
|
2024-07-25 19:42:31 -04:00
|
|
|
"cypress-delete-downloads-folder": "^0.0.6",
|
2024-09-06 21:21:45 -04:00
|
|
|
"cypress-if": "^1.12.6",
|
2024-12-06 22:28:32 -05:00
|
|
|
"cypress-split": "^1.24.7",
|
2024-07-19 21:22:59 -04:00
|
|
|
"cypress-wait-until": "^3.0.2",
|
2025-01-17 21:19:18 -05:00
|
|
|
"dockerode": "^4.0.4",
|
2024-07-26 22:02:55 -04:00
|
|
|
"eslint-plugin-cypress": "^3.4.0",
|
2021-12-03 11:25:57 -05:00
|
|
|
"eslint-plugin-es": "^4.1.0",
|
2024-02-23 21:08:41 -05:00
|
|
|
"exports-loader": "^5.0.0",
|
2020-10-31 00:59:26 -04:00
|
|
|
"file-loader": "^6.2.0",
|
2022-12-09 01:46:30 -05:00
|
|
|
"handlebars-loader": "^1.7.3",
|
2022-01-18 05:26:34 -05:00
|
|
|
"jasmine-core": "~2.5.2",
|
|
|
|
|
"jasmine-sinon": "^0.4.0",
|
2022-09-26 09:24:15 -04:00
|
|
|
"jest": "^29.0.3",
|
2023-10-27 21:33:24 -04:00
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2023-08-16 06:30:01 -04:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2023-06-21 11:10:06 -04:00
|
|
|
"jest-location-mock": "^1.0.9",
|
2024-11-15 22:20:11 -05:00
|
|
|
"jsdoc": "^4.0.4",
|
2024-03-15 22:30:20 -04:00
|
|
|
"karma": "^6.4.3",
|
2022-03-14 07:22:02 -04:00
|
|
|
"karma-chrome-launcher": "^3.1.1",
|
2024-08-14 05:31:18 -04:00
|
|
|
"karma-coverage": "2.2.1",
|
2022-01-18 05:26:34 -05:00
|
|
|
"karma-jasmine": "^1.1.2",
|
|
|
|
|
"karma-jasmine-sinon": "^1.0.4",
|
2023-04-21 21:59:15 -04:00
|
|
|
"karma-spec-reporter": "^0.0.36",
|
2022-04-08 13:32:57 -04:00
|
|
|
"karma-viewport": "^1.0.9",
|
2025-01-03 02:56:30 -05:00
|
|
|
"mime": "^4.0.6",
|
2024-07-26 22:04:06 -04:00
|
|
|
"puppeteer": "^22.14.0",
|
2023-10-05 08:55:22 -04:00
|
|
|
"raw-loader": "^4.0.2",
|
2022-02-14 08:05:15 -05:00
|
|
|
"regextras": "^0.8.0",
|
2024-04-27 02:17:22 -04:00
|
|
|
"sass": "^1.75.0",
|
2023-04-14 21:58:01 -04:00
|
|
|
"sass-loader": "^13.2.2",
|
2022-02-14 08:05:15 -05:00
|
|
|
"sinon": "<= 5.0.7",
|
|
|
|
|
"style-loader": "^3.3.1",
|
2024-07-26 22:10:24 -04:00
|
|
|
"tar": "^7.4.3",
|
2024-08-30 21:11:32 -04:00
|
|
|
"ts-jest": "^29.2.5",
|
2025-01-17 21:20:39 -05:00
|
|
|
"ts-loader": "^9.5.2",
|
2022-10-20 10:03:19 -04:00
|
|
|
"ts-node": "^10.9.1",
|
2023-08-22 13:42:21 -04:00
|
|
|
"tslib": "^2.6.2",
|
2024-08-02 21:30:57 -04:00
|
|
|
"typescript": "^5.5.4",
|
2022-02-14 08:05:15 -05:00
|
|
|
"vue-loader": "^15.9.8",
|
2024-01-19 13:08:04 -05:00
|
|
|
"vue-template-compiler": "^2.7.16",
|
2023-11-17 21:27:25 -05:00
|
|
|
"wait-on": "^7.2.0",
|
2024-07-13 10:39:47 -04:00
|
|
|
"webpack": "^5.93.0",
|
2023-05-05 21:58:27 -04:00
|
|
|
"webpack-cli": "^5.0.2",
|
2024-08-03 04:05:16 -04:00
|
|
|
"webpack-merge": "^6.0.1",
|
2024-07-12 22:47:30 -04:00
|
|
|
"workbox-webpack-plugin": "^7.1.0"
|
2019-06-18 04:13:01 -04:00
|
|
|
},
|
|
|
|
|
"browserslist": [
|
2019-10-22 10:00:58 -04:00
|
|
|
"extends @nextcloud/browserslist-config"
|
2019-05-23 11:03:04 -04:00
|
|
|
],
|
2021-12-06 02:25:57 -05:00
|
|
|
"engines": {
|
2023-06-21 06:47:16 -04:00
|
|
|
"node": "^20.0.0",
|
2024-01-16 08:20:19 -05:00
|
|
|
"npm": "^10.0.0"
|
2021-12-06 02:25:57 -05:00
|
|
|
},
|
2022-01-18 05:26:34 -05:00
|
|
|
"overrides": {
|
|
|
|
|
"colors": "1.4.0"
|
2019-05-23 11:03:04 -04:00
|
|
|
}
|
2022-02-14 08:05:15 -05:00
|
|
|
}
|