debian-mirror-gitlab/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

299 lines
12 KiB
JSON
Raw Permalink Normal View History

2017-08-17 22:00:37 +05:30
{
"private": true,
"scripts": {
2019-12-04 20:38:33 +05:30
"check-dependencies": "scripts/frontend/check_dependencies.sh",
2020-04-08 14:13:33 +05:30
"block-dependencies": "node scripts/frontend/block_dependencies.js",
2021-09-04 01:27:46 +05:30
"check:startup_css": "scripts/frontend/startup_css/startup_css_changed.sh",
2018-11-08 19:23:39 +05:30
"clean": "rm -rf public/assets tmp/cache/*-loader",
2023-05-27 22:25:52 +05:30
"dev-server": "NODE_OPTIONS=\"--max-old-space-size=4096\" node scripts/frontend/webpack_dev_server.js",
2019-10-12 21:52:04 +05:30
"file-coverage": "scripts/frontend/file_test_coverage.js",
2021-01-29 00:20:46 +05:30
"lint-docs": "scripts/lint-doc.sh",
2021-12-11 22:18:48 +05:30
"internal:eslint": "eslint --cache --max-warnings 0 --report-unused-disable-directives --ext .js,.vue,.graphql",
2022-08-13 15:12:31 +05:30
"internal:stylelint": "stylelint -q --rd '{ee/,}app/assets/stylesheets/**/*.{css,scss}'",
2019-09-04 21:01:54 +05:30
"prejest": "yarn check-dependencies",
2020-06-23 00:09:42 +05:30
"jest": "jest --config jest.config.js",
2019-07-31 22:56:46 +05:30
"jest-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
2021-11-11 11:23:49 +05:30
"jest:ci": "jest --config jest.config.js --ci --coverage --testSequencer ./scripts/frontend/parallel_ci_sequencer.js",
2023-03-17 16:20:25 +05:30
"jest:ci:predictive": "jest --config jest.config.js --ci --coverage --findRelatedTests $(cat $RSPEC_CHANGED_FILES_PATH) $(cat $RSPEC_MATCHING_JS_FILES_PATH) --passWithNoTests --testSequencer ./scripts/frontend/parallel_ci_sequencer.js",
2023-03-04 22:38:38 +05:30
"jest:contract": "PACT_DO_NOT_TRACK=true jest --config jest.config.contract.js --runInBand",
2020-05-24 23:13:21 +05:30
"jest:integration": "jest --config jest.config.integration.js",
2022-07-16 23:28:13 +05:30
"lint:eslint": "node scripts/frontend/eslint.js",
"lint:eslint:fix": "node scripts/frontend/eslint.js --fix",
"lint:eslint:all": "node scripts/frontend/eslint.js .",
2021-04-17 20:07:23 +05:30
"lint:eslint:all:fix": "yarn run lint:eslint:all --fix",
2022-07-16 23:28:13 +05:30
"lint:eslint:report": "node scripts/frontend/eslint.js --format html --output-file ./eslint-report.html --no-inline-config .",
2021-04-17 20:07:23 +05:30
"lint:eslint:staged": "scripts/frontend/execute-on-staged-files.sh internal:eslint '(js|vue)'",
"lint:eslint:staged:fix": "yarn run lint:eslint:staged --fix",
"lint:prettier": "yarn run prettier --check '**/*.{graphql,js,vue}'",
"lint:prettier:fix": "yarn run prettier --write '**/*.{graphql,js,vue}'",
"lint:prettier:staged": "scripts/frontend/execute-on-staged-files.sh prettier '(graphql|js|vue)' --check",
"lint:prettier:staged:fix": "scripts/frontend/execute-on-staged-files.sh prettier '(graphql|js|vue)' --write",
2021-04-29 21:17:54 +05:30
"lint:stylelint": "stylelint '{ee/,}app/assets/stylesheets/**/*.{css,scss}'",
2021-04-17 20:07:23 +05:30
"lint:stylelint:fix": "yarn run lint:stylelint --fix",
"lint:stylelint:staged": "scripts/frontend/execute-on-staged-files.sh stylelint '(css|scss)' -q",
"lint:stylelint:staged:fix": "yarn run lint:stylelint:staged --fix",
2021-09-04 01:27:46 +05:30
"generate:startup_css": "scripts/frontend/startup_css/setup.sh && node scripts/frontend/startup_css/main.js",
"generate:startup_css:full": "scripts/frontend/startup_css/setup.sh force && node scripts/frontend/startup_css/main.js",
2021-06-08 01:23:25 +05:30
"markdownlint": "markdownlint --config .markdownlint.yml",
"markdownlint:no-trailing-spaces": "markdownlint --config doc/.markdownlint/markdownlint-no-trailing-spaces.yml",
"markdownlint:no-trailing-spaces:fix": "yarn run markdownlint:no-trailing-spaces --fix",
2018-11-08 19:23:39 +05:30
"postinstall": "node ./scripts/frontend/postinstall.js",
2021-09-30 23:02:18 +05:30
"storybook:install": "yarn --cwd ./storybook install",
2023-01-13 00:05:48 +05:30
"storybook:build": "yarn --cwd ./storybook build --quiet",
2021-11-18 22:05:49 +05:30
"storybook:start": "./scripts/frontend/start_storybook.sh",
2023-01-13 00:05:48 +05:30
"swagger:validate": "swagger-cli validate",
2023-05-27 22:25:52 +05:30
"webpack": "NODE_OPTIONS=\"--max-old-space-size=4096\" webpack --config config/webpack.config.js",
"webpack-vendor": "NODE_OPTIONS=\"--max-old-space-size=4096\" webpack --config config/webpack.vendor.config.js",
"webpack-prod": "NODE_OPTIONS=\"--max-old-space-size=4096\" NODE_ENV=production webpack --config config/webpack.config.js"
2017-08-17 22:00:37 +05:30
},
"dependencies": {
2022-06-21 17:19:12 +05:30
"@apollo/client": "^3.5.10",
2022-07-23 23:45:48 +05:30
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
2023-07-09 08:55:56 +05:30
"@cubejs-client/core": "^0.33.0",
"@cubejs-client/vue": "^0.33.0",
2021-03-11 19:13:27 +05:30
"@gitlab/at.js": "1.5.7",
2023-06-20 00:43:36 +05:30
"@gitlab/cluster-client": "^1.2.0",
2021-03-08 18:12:59 +05:30
"@gitlab/favicon-overlay": "2.0.0",
2023-04-23 21:23:45 +05:30
"@gitlab/fonts": "^1.2.0",
2023-07-09 08:55:56 +05:30
"@gitlab/svgs": "3.46.0",
"@gitlab/ui": "62.10.0",
2022-07-16 23:28:13 +05:30
"@gitlab/visual-review-tools": "1.7.3",
2023-09-09 17:08:58 +05:30
"@gitlab/web-ide": "0.0.1-dev-20230713160749-patch-1",
2023-05-27 22:25:52 +05:30
"@mattiasbuelens/web-streams-adapter": "^0.1.0",
2023-06-20 00:43:36 +05:30
"@popperjs/core": "^2.11.2",
2022-06-21 17:19:12 +05:30
"@rails/actioncable": "6.1.4-7",
"@rails/ujs": "6.1.4-7",
2023-07-09 08:55:56 +05:30
"@snowplow/browser-plugin-client-hints": "^3.9.0",
"@snowplow/browser-plugin-form-tracking": "^3.9.0",
"@snowplow/browser-plugin-ga-cookies": "^3.9.0",
"@snowplow/browser-plugin-link-click-tracking": "^3.9.0",
"@snowplow/browser-plugin-performance-timing": "^3.9.0",
"@snowplow/browser-plugin-timezone": "^3.9.0",
"@snowplow/browser-tracker": "^3.9.0",
"@sourcegraph/code-host-integration": "0.0.91",
2023-06-20 00:43:36 +05:30
"@tiptap/core": "^2.0.3",
"@tiptap/extension-blockquote": "^2.0.3",
"@tiptap/extension-bold": "^2.0.3",
"@tiptap/extension-bubble-menu": "2.0.3",
"@tiptap/extension-bullet-list": "^2.0.3",
"@tiptap/extension-code": "^2.0.3",
"@tiptap/extension-code-block": "^2.0.3",
"@tiptap/extension-code-block-lowlight": "2.0.3",
"@tiptap/extension-document": "^2.0.3",
"@tiptap/extension-dropcursor": "^2.0.3",
"@tiptap/extension-gapcursor": "^2.0.3",
"@tiptap/extension-hard-break": "^2.0.3",
"@tiptap/extension-heading": "^2.0.3",
"@tiptap/extension-highlight": "^2.0.3",
"@tiptap/extension-history": "^2.0.3",
"@tiptap/extension-horizontal-rule": "^2.0.3",
"@tiptap/extension-image": "^2.0.3",
"@tiptap/extension-italic": "^2.0.3",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-list-item": "^2.0.3",
"@tiptap/extension-ordered-list": "^2.0.3",
"@tiptap/extension-paragraph": "^2.0.3",
"@tiptap/extension-strike": "^2.0.3",
"@tiptap/extension-subscript": "^2.0.3",
"@tiptap/extension-superscript": "^2.0.3",
"@tiptap/extension-table": "^2.0.3",
"@tiptap/extension-table-cell": "^2.0.3",
"@tiptap/extension-table-header": "^2.0.3",
"@tiptap/extension-table-row": "^2.0.3",
"@tiptap/extension-task-item": "^2.0.3",
"@tiptap/extension-task-list": "^2.0.3",
"@tiptap/extension-text": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/suggestion": "^2.0.3",
"@tiptap/vue-2": "2.0.3",
"@vue/apollo-components": "^4.0.0-beta.4",
"@vue/apollo-option": "^4.0.0-beta.4",
2022-06-21 17:19:12 +05:30
"apollo-upload-client": "15.0.0",
2023-04-23 21:23:45 +05:30
"apollo3-cache-persist": "^0.14.1",
2021-12-11 22:18:48 +05:30
"autosize": "^5.0.1",
"axios": "^0.24.0",
2023-07-09 08:55:56 +05:30
"babel-loader": "^8.3.0",
2020-03-13 15:44:24 +05:30
"babel-plugin-lodash": "^3.3.4",
2023-05-27 22:25:52 +05:30
"bootstrap": "4.6.2",
2022-11-25 23:54:43 +05:30
"browserslist": "^4.21.3",
2019-12-21 20:55:43 +05:30
"cache-loader": "^4.1.0",
2021-12-11 22:18:48 +05:30
"canvas-confetti": "^1.4.0",
2022-03-02 08:16:31 +05:30
"clipboard": "^2.0.8",
2021-03-11 19:13:27 +05:30
"compression-webpack-plugin": "^5.0.2",
2021-06-08 01:23:25 +05:30
"copy-webpack-plugin": "^6.4.1",
2023-07-09 08:55:56 +05:30
"core-js": "^3.30.2",
2020-10-24 23:57:45 +05:30
"cron-validator": "^1.1.1",
2022-01-26 12:08:38 +05:30
"cronstrue": "^1.122.0",
2017-09-10 17:25:29 +05:30
"cropper": "^2.3.0",
2020-05-24 23:13:21 +05:30
"css-loader": "^2.1.1",
2020-06-23 00:09:42 +05:30
"d3": "^5.16.0",
"d3-sankey": "^0.12.3",
2018-03-17 18:26:18 +05:30
"d3-selection": "^1.2.0",
2021-11-18 22:05:49 +05:30
"dateformat": "^5.0.1",
2020-03-13 15:44:24 +05:30
"deckar01-task_list": "^2.3.1",
2023-06-20 00:43:36 +05:30
"dexie": "^3.2.3",
2018-03-17 18:26:18 +05:30
"diff": "^3.4.0",
2023-05-27 22:25:52 +05:30
"dompurify": "^2.4.5",
2017-08-17 22:00:37 +05:30
"dropzone": "^4.2.0",
2020-06-23 00:09:42 +05:30
"editorconfig": "^0.15.3",
2022-01-26 12:08:38 +05:30
"emoji-regex": "^10.0.0",
2021-03-08 18:12:59 +05:30
"fast-mersenne-twister": "1.0.2",
2021-04-29 21:17:54 +05:30
"file-loader": "^6.2.0",
2020-04-08 14:13:33 +05:30
"fuzzaldrin-plus": "^0.6.0",
2023-06-20 00:43:36 +05:30
"gettext-parser": "^6.0.0",
2022-03-02 08:16:31 +05:30
"graphql": "^15.7.2",
2021-01-29 00:20:46 +05:30
"graphql-tag": "^2.11.0",
2023-07-09 08:55:56 +05:30
"gridstack": "^7.3.0",
2022-08-13 15:12:31 +05:30
"highlight.js": "^11.5.1",
2022-08-27 11:52:29 +05:30
"immer": "^9.0.15",
2020-07-28 23:09:34 +05:30
"ipaddr.js": "^1.9.1",
2017-08-17 22:00:37 +05:30
"jed": "^1.1.1",
2023-06-20 00:43:36 +05:30
"jest-worker": "^28.1.3",
2021-09-04 01:27:46 +05:30
"jquery": "^3.6.0",
2019-07-07 11:18:12 +05:30
"jquery.caret": "^0.3.1",
2022-07-16 23:28:13 +05:30
"js-cookie": "^3.0.0",
2020-07-28 23:09:34 +05:30
"js-yaml": "^3.13.1",
2017-08-17 22:00:37 +05:30
"jszip": "^3.1.3",
2021-06-08 01:23:25 +05:30
"katex": "^0.13.2",
2020-11-24 15:15:51 +05:30
"lodash": "^4.17.20",
2022-08-13 15:12:31 +05:30
"lowlight": "^2.6.1",
2022-08-27 11:52:29 +05:30
"marked": "^4.0.18",
2023-07-09 08:55:56 +05:30
"marked-bidi": "^1.0.3",
2021-03-08 18:12:59 +05:30
"mathjax": "3",
2022-08-27 11:52:29 +05:30
"mdurl": "^1.0.1",
2023-07-09 08:55:56 +05:30
"mermaid": "10.1.0",
2022-08-13 15:12:31 +05:30
"micromatch": "^4.0.5",
2020-06-23 00:09:42 +05:30
"minimatch": "^3.0.4",
2022-08-27 11:52:29 +05:30
"monaco-editor": "^0.30.1",
"monaco-editor-webpack-plugin": "^6.0.0",
2022-11-25 23:54:43 +05:30
"monaco-yaml": "4.0.0",
2020-11-24 15:15:51 +05:30
"mousetrap": "1.6.5",
2021-09-30 23:02:18 +05:30
"papaparse": "^5.3.1",
2022-07-23 23:45:48 +05:30
"patch-package": "^6.4.7",
2022-11-25 23:54:43 +05:30
"pdfjs-dist": "^2.16.105",
2019-10-12 21:52:04 +05:30
"pikaday": "^1.8.0",
2020-04-08 14:13:33 +05:30
"popper.js": "^1.16.1",
2021-06-08 01:23:25 +05:30
"portal-vue": "^2.1.7",
2022-08-13 15:12:31 +05:30
"postcss": "8.4.14",
2022-08-27 11:52:29 +05:30
"prosemirror-markdown": "1.9.1",
2017-08-17 22:00:37 +05:30
"raphael": "^2.2.7",
2021-03-11 19:13:27 +05:30
"raw-loader": "^4.0.2",
2022-06-21 17:19:12 +05:30
"rehype-raw": "^6.1.1",
2022-08-27 11:52:29 +05:30
"remark-frontmatter": "^4.0.1",
2022-07-23 23:45:48 +05:30
"remark-gfm": "^3.0.1",
2022-06-21 17:19:12 +05:30
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
2021-06-08 01:23:25 +05:30
"scrollparent": "^2.0.1",
2023-06-20 00:43:36 +05:30
"semver": "^7.3.4",
2023-03-04 22:38:38 +05:30
"sentrybrowser5": "npm:@sentry/browser@5.30.0",
"sentrybrowser7": "npm:@sentry/browser@^7.21.1",
2020-04-08 14:13:33 +05:30
"sortablejs": "^1.10.2",
2020-06-23 00:09:42 +05:30
"string-hash": "1.1.3",
2021-06-08 01:23:25 +05:30
"style-loader": "^2.0.0",
2022-08-13 15:12:31 +05:30
"swagger-ui-dist": "4.12.0",
2023-05-27 22:25:52 +05:30
"thread-loader": "^3.0.4",
2022-10-11 01:57:18 +05:30
"three": "^0.143.0",
2020-04-08 14:13:33 +05:30
"timeago.js": "^4.0.2",
2022-11-25 23:54:43 +05:30
"tippy.js": "^6.3.7",
2023-04-23 21:23:45 +05:30
"traverse": "^0.6.7",
2022-06-21 17:19:12 +05:30
"unified": "^10.1.2",
2023-05-27 22:25:52 +05:30
"unist-builder": "^3.0.1",
"unist-util-visit-parents": "^5.1.3",
2021-04-29 21:17:54 +05:30
"url-loader": "^4.1.1",
2020-06-23 00:09:42 +05:30
"uuid": "8.1.0",
2017-08-17 22:00:37 +05:30
"visibilityjs": "^1.2.4",
2023-06-20 00:43:36 +05:30
"vue": "2.7.14",
2022-04-04 11:22:00 +05:30
"vue-apollo": "^3.0.7",
2023-06-20 00:43:36 +05:30
"vue-loader": "15.10.1",
2021-06-08 01:23:25 +05:30
"vue-observe-visibility": "^1.0.0",
"vue-resize": "^1.0.1",
2023-07-09 08:55:56 +05:30
"vue-router": "3.6.5",
2023-06-20 00:43:36 +05:30
"vue-router-vue3": "npm:vue-router@4.1.6",
"vue-template-compiler": "2.7.14",
2021-04-29 21:17:54 +05:30
"vue-virtual-scroll-list": "^1.4.7",
2019-12-04 20:38:33 +05:30
"vuedraggable": "^2.23.0",
2022-10-11 01:57:18 +05:30
"vuex": "^3.6.2",
2023-06-20 00:43:36 +05:30
"vuex-vue3": "npm:vuex@4.0.0",
2023-05-27 22:25:52 +05:30
"web-streams-polyfill": "^3.2.1",
2020-11-24 15:15:51 +05:30
"web-vitals": "^0.2.4",
2021-03-11 19:13:27 +05:30
"webpack": "^4.46.0",
2023-07-09 08:55:56 +05:30
"webpack-bundle-analyzer": "^4.8.0",
2022-07-23 23:45:48 +05:30
"webpack-cli": "^4.10.0",
2020-04-08 14:13:33 +05:30
"webpack-stats-plugin": "^0.3.1",
2018-11-18 11:00:15 +05:30
"worker-loader": "^2.0.0",
2021-12-11 22:18:48 +05:30
"xterm": "3.14.5",
2022-04-04 11:22:00 +05:30
"yaml": "^2.0.0-10"
2017-08-17 22:00:37 +05:30
},
"devDependencies": {
2023-06-20 00:43:36 +05:30
"@gitlab/eslint-plugin": "19.0.0",
2022-08-13 15:12:31 +05:30
"@gitlab/stylelint-config": "4.1.0",
2023-06-20 00:43:36 +05:30
"@graphql-eslint/eslint-plugin": "3.18.0",
2020-07-28 23:09:34 +05:30
"@testing-library/dom": "^7.16.2",
2023-03-04 22:38:38 +05:30
"@types/jest": "^28.1.3",
2023-05-27 22:25:52 +05:30
"@vue/compat": "^3.2.47",
"@vue/compiler-sfc": "^3.2.47",
2022-03-02 08:16:31 +05:30
"@vue/test-utils": "1.3.0",
2023-05-27 22:25:52 +05:30
"@vue/test-utils-vue3": "npm:@vue/test-utils@2",
2023-03-04 22:38:38 +05:30
"@vue/vue2-jest": "^28.1.0",
2023-05-27 22:25:52 +05:30
"@vue/vue3-jest": "^29.2.3",
2022-06-21 17:19:12 +05:30
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
2018-11-08 19:23:39 +05:30
"axios-mock-adapter": "^1.15.0",
2023-03-04 22:38:38 +05:30
"babel-jest": "^28.1.3",
2018-10-15 14:42:47 +05:30
"chalk": "^2.4.1",
2021-09-04 01:27:46 +05:30
"cheerio": "^1.0.0-rc.9",
2021-10-27 15:23:28 +05:30
"commander": "^2.20.3",
2019-07-07 11:18:12 +05:30
"custom-jquery-matchers": "^2.1.0",
2023-07-09 08:55:56 +05:30
"eslint": "8.40.0",
2021-11-18 22:05:49 +05:30
"eslint-import-resolver-jest": "3.0.2",
2021-12-11 22:18:48 +05:30
"eslint-import-resolver-webpack": "0.13.2",
2023-04-23 21:23:45 +05:30
"eslint-plugin-import": "^2.27.5",
2021-12-11 22:18:48 +05:30
"eslint-plugin-no-jquery": "2.7.0",
2023-03-04 22:38:38 +05:30
"eslint-plugin-no-unsanitized": "^4.0.2",
2023-06-20 00:43:36 +05:30
"fake-indexeddb": "^4.0.1",
"gettext-extractor": "^3.7.0",
"gettext-extractor-vue": "^5.1.0",
2021-04-17 20:07:23 +05:30
"glob": "^7.1.6",
2020-04-08 14:13:33 +05:30
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.0",
2023-03-04 22:38:38 +05:30
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-diff": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-jasmine2": "^28.1.3",
"jest-junit": "^12.3.0",
"jest-util": "^28.1.3",
2022-10-11 01:57:18 +05:30
"markdownlint-cli": "0.32.2",
2021-03-11 19:13:27 +05:30
"miragejs": "^0.1.40",
2022-04-04 11:22:00 +05:30
"mock-apollo-client": "1.2.0",
2022-08-27 11:52:29 +05:30
"nodemon": "^2.0.19",
2021-03-08 18:12:59 +05:30
"prettier": "2.2.1",
2022-08-27 11:52:29 +05:30
"prosemirror-test-builder": "^1.1.0",
2021-09-04 01:27:46 +05:30
"purgecss": "^4.0.3",
"purgecss-from-html": "^4.0.3",
2022-08-13 15:12:31 +05:30
"sass": "^1.49.9",
"stylelint": "^14.9.1",
2023-01-13 00:05:48 +05:30
"swagger-cli": "^4.0.4",
2019-12-04 20:38:33 +05:30
"timezone-mock": "^1.0.8",
2023-05-27 22:25:52 +05:30
"vue-loader-vue3": "npm:vue-loader@17",
2023-07-09 08:55:56 +05:30
"vue-test-utils-compat": "0.0.13",
"webpack-dev-server": "4.15.0",
2020-06-23 00:09:42 +05:30
"xhr-mock": "^2.5.1",
2020-03-13 15:44:24 +05:30
"yarn-check-webpack-plugin": "^1.2.0",
2023-07-09 08:55:56 +05:30
"yarn-deduplicate": "^6.0.2"
2019-07-07 11:18:12 +05:30
},
2020-04-08 14:13:33 +05:30
"blockedDependencies": {
2020-07-28 23:09:34 +05:30
"bootstrap-vue": "https://docs.gitlab.com/ee/development/fe_guide/dependencies.html#bootstrapvue"
2020-04-08 14:13:33 +05:30
},
2019-07-07 11:18:12 +05:30
"resolutions": {
2022-06-21 17:19:12 +05:30
"chokidar": "^3.5.3",
2021-12-11 22:18:48 +05:30
"@types/node": "14.17.5"
2019-02-15 15:39:39 +05:30
},
"engines": {
2021-11-11 11:23:49 +05:30
"node": ">=12.22.1",
2019-02-15 15:39:39 +05:30
"yarn": "^1.10.0"
2017-08-17 22:00:37 +05:30
}
2023-03-04 22:38:38 +05:30
}