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" ,
2025-05-31 10:02:08 -04:00
"lint" : "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q \"apps/$appdir\"); then printf \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern" ,
"lint:fix" : "npm run lint -- --fix" ,
"stylelint" : "stylelint $(for appdir in $(ls apps); do if ! $(git check-ignore -q \"apps/$appdir\"); then printf \"'apps/$appdir/**/*.{scss,vue}' \"; fi; done) 'core/**/*.{scss,vue}'" ,
"stylelint:fix" : "npm run stylelint -- --fix" ,
2024-08-24 10:51:18 -04:00
"test" : "vitest run" ,
"test:watch" : "vitest watch" ,
2025-04-14 08:34:55 -04:00
"test:coverage" : "vitest run --coverage --reporter=default --reporter=junit --outputFile=test-report.junit.xml" ,
2024-08-31 10:28:05 -04:00
"test:update-snapshots" : "vitest run --update" ,
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" ,
2025-07-29 04:38:07 -04:00
"@nextcloud/auth" : "^2.5.2" ,
2024-09-20 23:07:25 -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-08-28 09:05:33 -04:00
"@nextcloud/calendar-availability-vue" : "^2.2.10" ,
2024-07-10 14:00:18 -04:00
"@nextcloud/capabilities" : "^1.2.0" ,
2025-09-20 06:45:35 -04:00
"@nextcloud/dialogs" : "^6.3.2" ,
2025-03-14 22:13:56 -04:00
"@nextcloud/event-bus" : "^3.3.2" ,
2025-07-29 04:38:07 -04:00
"@nextcloud/files" : "^3.12.0" ,
2025-08-08 21:59:26 -04:00
"@nextcloud/initial-state" : "^3.0.0" ,
2025-07-14 15:04:23 -04:00
"@nextcloud/l10n" : "^3.4.0" ,
2024-06-08 11:04:40 -04:00
"@nextcloud/logger" : "^3.0.2" ,
2025-07-14 15:04:23 -04:00
"@nextcloud/moment" : "^1.3.5" ,
2025-01-10 21:25:31 -05:00
"@nextcloud/password-confirmation" : "^5.3.1" ,
2024-08-03 02:36:09 -04:00
"@nextcloud/paths" : "^2.2.1" ,
2024-09-05 05:28:17 -04:00
"@nextcloud/router" : "^3.0.1" ,
2025-09-05 07:28:17 -04:00
"@nextcloud/sharing" : "^0.3.0" ,
2025-09-11 08:56:14 -04:00
"@nextcloud/upload" : "^1.11.0" ,
2025-09-20 18:14:14 -04:00
"@nextcloud/vue" : "^8.31.0" ,
2025-09-20 06:45:05 -04:00
"@simplewebauthn/browser" : "^13.2.0" ,
2025-03-13 13:45:37 -04:00
"@vue/web-component-wrapper" : "^1.3.0" ,
2025-04-11 21:20:00 -04:00
"@vueuse/components" : "^11.3.0" ,
2025-07-31 07:52:32 -04:00
"@vueuse/core" : "^11.3.0" ,
2025-02-28 21:28:30 -05:00
"@vueuse/integrations" : "^11.3.0" ,
2025-04-18 18:45:23 -04:00
"backbone" : "^1.6.1" ,
2024-08-29 08:27:59 -04:00
"blurhash" : "^2.0.5" ,
2025-08-02 04:18:41 -04:00
"browserslist-useragent-regexp" : "^4.1.3" ,
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" ,
2025-09-20 06:45:21 -04:00
"color" : "^5.0.2" ,
2025-08-08 21:57:30 -04:00
"core-js" : "^3.45.0" ,
2025-09-08 11:48:53 -04:00
"crypto-browserify" : "^3.12.1" ,
2025-03-05 04:02:13 -05:00
"davclient.js" : "nextcloud-deps/davclient.js#59d7777d7fe290c5f1fd74a58e7eb529b63e153d" ,
2025-08-02 04:18:41 -04:00
"debounce" : "^2.2.0" ,
2025-09-20 06:44:53 -04:00
"dompurify" : "^3.2.7" ,
2019-10-04 07:23:32 -04:00
"escape-html" : "^1.0.3" ,
2025-05-30 22:02:28 -04:00
"focus-trap" : "^7.6.5" ,
2025-08-02 04:18:41 -04:00
"handlebars" : "^4.7.8" ,
"is-svg" : "^6.1.0" ,
2023-09-21 19:45:35 -04:00
"jquery" : "~3.7" ,
2025-08-02 04:18:41 -04:00
"jquery-ui" : "1.14.1" ,
2024-06-14 21:22:52 -04:00
"jquery-ui-dist" : "^1.13.3" ,
2025-09-28 11:33:55 -04:00
"libphonenumber-js" : "^1.12.23" ,
2021-03-02 04:25:58 -05:00
"lodash" : "^4.17.21" ,
2025-09-19 21:04:34 -04:00
"marked" : "^16.3.0" ,
2024-01-31 08:59:16 -05:00
"moment" : "^2.30.1" ,
2025-05-30 22:04:59 -04:00
"moment-timezone" : "^0.6.0" ,
2025-08-28 09:05:44 -04:00
"p-limit" : "^7.1.1" ,
2025-02-07 22:08:40 -05:00
"p-queue" : "^8.1.0" ,
2021-12-02 08:50:49 -05:00
"path" : "^0.12.7" ,
2025-02-07 22:58:48 -05:00
"pinia" : "^2.3.1" ,
2025-09-20 06:46:23 -04:00
"query-string" : "^9.3.1" ,
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" ,
2024-09-06 22:51:16 -04:00
"underscore" : "1.13.7" ,
2025-08-02 04:18:41 -04:00
"url-search-params-polyfill" : "^8.2.5" ,
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" ,
2025-08-02 04:18:41 -04:00
"vue-frag" : "^1.4.3" ,
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" ,
2024-11-16 19:49:21 -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" ,
2025-03-02 07:29:21 -05:00
"webdav" : "^5.8.0"
2018-12-11 14:56:46 -05:00
} ,
"devDependencies" : {
2025-08-02 04:18:41 -04:00
"@babel/node" : "^7.28.0" ,
2025-05-29 12:04:07 -04:00
"@babel/plugin-transform-private-methods" : "^7.27.1" ,
2025-05-29 11:14:32 -04:00
"@babel/preset-typescript" : "^7.27.1" ,
2025-06-06 21:20:35 -04:00
"@codecov/webpack-plugin" : "^1.9.1" ,
2024-06-24 18:00:31 -04:00
"@cypress/vue2" : "^2.1.1" ,
2025-08-08 22:00:39 -04:00
"@cypress/webpack-preprocessor" : "^7.0.0" ,
2024-06-24 18:00:31 -04:00
"@nextcloud/babel-config" : "^1.2.0" ,
2025-05-09 21:56:50 -04:00
"@nextcloud/cypress" : "^1.0.0-beta.15" ,
2025-04-11 21:21:58 -04:00
"@nextcloud/eslint-config" : "^8.4.2" ,
2025-05-30 22:03:05 -04:00
"@nextcloud/stylelint-config" : "^3.1.0" ,
2024-06-24 18:00:31 -04:00
"@nextcloud/typings" : "^1.9.1" ,
2025-04-14 05:15:19 -04:00
"@nextcloud/webpack-vue-config" : "^6.3.0" ,
2024-12-20 22:05:26 -05:00
"@pinia/testing" : "^0.1.7" ,
2025-09-11 08:56:30 -04:00
"@testing-library/cypress" : "^10.1.0" ,
2025-08-02 04:18:41 -04:00
"@testing-library/jest-dom" : "^6.6.4" ,
2025-01-31 21:33:20 -05:00
"@testing-library/user-event" : "^14.6.1" ,
2022-05-13 21:02:21 -04:00
"@testing-library/vue" : "^5.8.3" ,
2025-09-20 06:46:12 -04:00
"@types/dockerode" : "^3.3.44" ,
2024-01-19 21:27:48 -05:00
"@types/wait-on" : "^5.3.4" ,
2025-04-27 08:55:40 -04:00
"@vitejs/plugin-vue2" : "^2.3.3" ,
2025-08-01 21:14:51 -04:00
"@vitest/coverage-v8" : "^3.2.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" ,
2025-09-11 08:58:02 -04:00
"@zip.js/zip.js" : "^2.8.2" ,
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" ,
2025-06-14 04:46:46 -04:00
"cypress" : "^13.17.0" ,
2025-08-29 21:04:16 -04:00
"cypress-axe" : "^1.7.0" ,
2024-07-25 19:42:31 -04:00
"cypress-delete-downloads-folder" : "^0.0.6" ,
2025-02-07 22:52:02 -05:00
"cypress-if" : "^1.13.2" ,
2025-09-19 21:07:05 -04:00
"cypress-split" : "^1.24.23" ,
2024-07-19 21:22:59 -04:00
"cypress-wait-until" : "^3.0.2" ,
2025-09-11 11:57:30 -04:00
"dockerode" : "^4.0.8" ,
2025-01-17 21:08:40 -05:00
"eslint-plugin-cypress" : "^3.6.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" ,
2025-09-19 21:05:58 -04:00
"jsdom" : "^27.0.0" ,
2025-08-02 04:18:41 -04:00
"karma" : "^6.4.4" ,
"karma-chrome-launcher" : "^3.2.0" ,
"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-09-19 21:05:05 -04:00
"mime" : "^4.1.0" ,
2025-09-28 11:35:18 -04:00
"msw" : "^2.11.3" ,
2025-09-28 12:13:55 -04:00
"puppeteer" : "^24.22.3" ,
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" ,
2025-09-28 18:40:24 -04:00
"sass" : "^1.93.2" ,
2022-02-14 08:05:15 -05:00
"sinon" : "<= 5.0.7" ,
2025-09-28 18:13:13 -04:00
"stylelint" : "^16.24.0" ,
2024-08-27 15:56:15 -04:00
"stylelint-use-logical" : "^2.1.2" ,
2025-09-28 17:32:05 -04:00
"tar" : "^7.5.1" ,
2025-08-02 04:18:41 -04:00
"ts-node" : "^10.9.2" ,
2024-12-06 21:17:41 -05:00
"tslib" : "^2.8.1" ,
2025-08-02 04:18:41 -04:00
"typescript" : "^5.9.2" ,
"vitest" : "^3.2.4" ,
2025-04-14 15:58:11 -04:00
"vue-loader" : "^15.11.1" ,
2024-01-19 13:08:04 -05:00
"vue-template-compiler" : "^2.7.16" ,
2025-08-01 21:11:41 -04:00
"wait-on" : "^8.0.4" ,
2025-08-15 21:58:34 -04:00
"webpack" : "^5.101.2" ,
2025-04-14 15:58:11 -04:00
"webpack-cli" : "^6.0.1" ,
2024-08-03 04:05:16 -04:00
"webpack-merge" : "^6.0.1" ,
2024-11-16 00:33:20 -05:00
"workbox-webpack-plugin" : "^7.3.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" : {
2025-07-31 06:33:32 -04:00
"node" : "^22.0.0" ,
"npm" : "^10.5.0"
2021-12-06 02:25:57 -05:00
} ,
2022-01-18 05:26:34 -05:00
"overrides" : {
2025-04-22 04:26:51 -04:00
"colors" : "1.4.0"
2019-05-23 11:03:04 -04:00
}
2024-11-18 11:34:55 -05:00
}