debian-mirror-gitlab/package.json

271 lines
11 KiB
JSON
Raw 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",
2020-05-24 23:13:21 +05:30
"dev-server": "NODE_OPTIONS=\"--max-old-space-size=3584\" 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-04-17 20:07:23 +05:30
"internal:eslint": "eslint --cache --max-warnings 0 --report-unused-disable-directives --ext .js,.vue",
2021-04-29 21:17:54 +05:30
"internal:stylelint": "stylelint -q '{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",
"jest:ci:minimal": "jest --config jest.config.js --ci --coverage --findRelatedTests $(cat tmp/changed_files.txt) --passWithNoTests --testSequencer ./scripts/frontend/parallel_ci_sequencer.js",
2020-05-24 23:13:21 +05:30
"jest:integration": "jest --config jest.config.integration.js",
2019-03-02 22:35:43 +05:30
"jsdoc": "jsdoc -c config/jsdocs.config.js",
2021-04-17 20:07:23 +05:30
"lint:eslint": "yarn run internal:eslint",
"lint:eslint:fix": "yarn run internal:eslint --fix",
"lint:eslint:all": "yarn run internal:eslint .",
"lint:eslint:all:fix": "yarn run lint:eslint:all --fix",
"lint:eslint:report": "yarn run internal:eslint --format html --output-file ./eslint-report.html --no-inline-config .",
"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",
"storybook:build": "yarn --cwd ./storybook build",
"storybook:start": "yarn --cwd ./storybook start",
2019-07-07 11:18:12 +05:30
"stylelint-create-utility-map": "node scripts/frontend/stylelint/stylelint-utility-map.js",
"webpack": "NODE_OPTIONS=\"--max-old-space-size=3584\" webpack --config config/webpack.config.js",
2020-01-01 13:55:28 +05:30
"webpack-vendor": "NODE_OPTIONS=\"--max-old-space-size=3584\" webpack --config config/webpack.vendor.config.js",
2019-12-04 20:38:33 +05:30
"webpack-prod": "NODE_OPTIONS=\"--max-old-space-size=3584\" NODE_ENV=production webpack --config config/webpack.config.js"
2017-08-17 22:00:37 +05:30
},
"dependencies": {
2020-06-23 00:09:42 +05:30
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-json-strings": "^7.10.1",
"@babel/plugin-proposal-private-methods": "^7.10.1",
"@babel/plugin-syntax-import-meta": "^7.10.1",
"@babel/preset-env": "^7.10.1",
2021-03-11 19:13:27 +05:30
"@gitlab/at.js": "1.5.7",
2021-03-08 18:12:59 +05:30
"@gitlab/favicon-overlay": "2.0.0",
2021-11-11 11:23:49 +05:30
"@gitlab/svgs": "1.212.0",
2021-02-22 17:27:13 +05:30
"@gitlab/tributejs": "1.0.0",
2021-11-11 11:23:49 +05:30
"@gitlab/ui": "32.11.0",
2020-04-22 19:07:51 +05:30
"@gitlab/visual-review-tools": "1.6.1",
2021-09-04 01:27:46 +05:30
"@rails/actioncable": "6.1.3-2",
"@rails/ujs": "6.1.3-2",
2021-11-11 11:23:49 +05:30
"@sentry/browser": "5.30.0",
"@sourcegraph/code-host-integration": "0.0.60",
"@tiptap/core": "^2.0.0-beta.105",
"@tiptap/extension-blockquote": "^2.0.0-beta.15",
"@tiptap/extension-bold": "^2.0.0-beta.15",
"@tiptap/extension-bullet-list": "^2.0.0-beta.15",
"@tiptap/extension-code": "^2.0.0-beta.16",
"@tiptap/extension-code-block-lowlight": "2.0.0-beta.37",
"@tiptap/extension-document": "^2.0.0-beta.13",
"@tiptap/extension-dropcursor": "^2.0.0-beta.19",
"@tiptap/extension-gapcursor": "^2.0.0-beta.19",
"@tiptap/extension-hard-break": "^2.0.0-beta.16",
"@tiptap/extension-heading": "^2.0.0-beta.15",
"@tiptap/extension-history": "^2.0.0-beta.16",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.19",
"@tiptap/extension-image": "^2.0.0-beta.15",
"@tiptap/extension-italic": "^2.0.0-beta.15",
"@tiptap/extension-link": "^2.0.0-beta.20",
"@tiptap/extension-list-item": "^2.0.0-beta.14",
"@tiptap/extension-ordered-list": "^2.0.0-beta.16",
"@tiptap/extension-paragraph": "^2.0.0-beta.17",
"@tiptap/extension-strike": "^2.0.0-beta.17",
2021-10-27 15:23:28 +05:30
"@tiptap/extension-subscript": "^2.0.0-beta.4",
"@tiptap/extension-superscript": "^2.0.0-beta.4",
2021-11-11 11:23:49 +05:30
"@tiptap/extension-table": "^2.0.0-beta.30",
"@tiptap/extension-table-cell": "^2.0.0-beta.15",
"@tiptap/extension-table-header": "^2.0.0-beta.17",
"@tiptap/extension-table-row": "^2.0.0-beta.14",
"@tiptap/extension-task-item": "^2.0.0-beta.18",
2021-10-27 15:23:28 +05:30
"@tiptap/extension-task-list": "^2.0.0-beta.17",
2021-11-11 11:23:49 +05:30
"@tiptap/extension-text": "^2.0.0-beta.13",
"@tiptap/vue-2": "^2.0.0-beta.50",
2021-04-29 21:17:54 +05:30
"@toast-ui/editor": "^2.5.2",
"@toast-ui/vue-editor": "^2.5.2",
2020-10-24 23:57:45 +05:30
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-batch-http": "^1.2.14",
2021-04-17 20:07:23 +05:30
"apollo-link-http": "^1.5.17",
2020-10-24 23:57:45 +05:30
"apollo-upload-client": "^13.0.0",
2020-04-08 14:13:33 +05:30
"autosize": "^4.0.2",
"aws-sdk": "^2.637.0",
2020-11-24 15:15:51 +05:30
"axios": "^0.20.0",
2021-03-11 19:13:27 +05:30
"babel-loader": "^8.2.2",
2020-03-13 15:44:24 +05:30
"babel-plugin-lodash": "^3.3.4",
2021-06-08 01:23:25 +05:30
"bootstrap": "4.5.3",
2019-12-21 20:55:43 +05:30
"cache-loader": "^4.1.0",
2018-03-17 18:26:18 +05:30
"clipboard": "^1.7.1",
2020-05-24 23:13:21 +05:30
"codemirror": "^5.48.4",
2020-04-08 14:13:33 +05:30
"codesandbox-api": "0.0.23",
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",
2021-11-11 11:23:49 +05:30
"core-js": "^3.17.3",
2020-10-24 23:57:45 +05:30
"cron-validator": "^1.1.1",
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-09-04 01:27:46 +05:30
"dateformat": "^4.5.1",
2020-03-13 15:44:24 +05:30
"deckar01-task_list": "^2.3.1",
2018-03-17 18:26:18 +05:30
"diff": "^3.4.0",
2021-11-11 11:23:49 +05:30
"dompurify": "^2.3.2",
2017-08-17 22:00:37 +05:30
"dropzone": "^4.2.0",
2020-06-23 00:09:42 +05:30
"editorconfig": "^0.15.3",
2019-03-02 22:35:43 +05:30
"emoji-regex": "^7.0.3",
2017-08-17 22:00:37 +05:30
"emoji-unicode-version": "^0.2.1",
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",
2021-01-29 00:20:46 +05:30
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
2020-11-24 15:15:51 +05:30
"immer": "^7.0.7",
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",
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",
2020-04-08 14:13:33 +05:30
"js-cookie": "^2.2.1",
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",
"jszip-utils": "^0.0.2",
2021-06-08 01:23:25 +05:30
"katex": "^0.13.2",
2020-11-24 15:15:51 +05:30
"lodash": "^4.17.20",
2021-09-04 01:27:46 +05:30
"lowlight": "^1.20.0",
2018-03-17 18:26:18 +05:30
"marked": "^0.3.12",
2021-03-08 18:12:59 +05:30
"mathjax": "3",
2021-11-11 11:23:49 +05:30
"mermaid": "^8.11.5",
2020-06-23 00:09:42 +05:30
"minimatch": "^3.0.4",
2021-09-30 23:02:18 +05:30
"monaco-editor": "^0.25.2",
"monaco-editor-webpack-plugin": "^4.0.0",
2021-01-29 00:20:46 +05:30
"monaco-yaml": "^2.5.1",
2020-11-24 15:15:51 +05:30
"mousetrap": "1.6.5",
2021-09-30 23:02:18 +05:30
"papaparse": "^5.3.1",
2019-09-04 21:01:54 +05:30
"pdfjs-dist": "^2.0.943",
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",
2020-11-24 15:15:51 +05:30
"prismjs": "^1.21.0",
2021-06-08 01:23:25 +05:30
"prosemirror-inputrules": "^1.1.3",
2021-11-11 11:23:49 +05:30
"prosemirror-markdown": "^1.5.2",
"prosemirror-model": "^1.14.3",
2021-09-30 23:02:18 +05:30
"prosemirror-state": "^1.3.4",
2021-11-11 11:23:49 +05:30
"prosemirror-tables": "^1.1.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",
2021-06-08 01:23:25 +05:30
"scrollparent": "^2.0.1",
2017-08-17 22:00:37 +05:30
"select2": "3.5.2-browserify",
2020-04-08 14:13:33 +05:30
"smooshpack": "^0.0.62",
"sortablejs": "^1.10.2",
2017-08-17 22:00:37 +05:30
"sql.js": "^0.4.0",
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",
2021-04-17 20:07:23 +05:30
"swagger-ui-dist": "^3.44.1",
2017-08-17 22:00:37 +05:30
"three": "^0.84.0",
"three-orbit-controls": "^82.1.0",
"three-stl-loader": "^1.0.4",
2020-04-08 14:13:33 +05:30
"timeago.js": "^4.0.2",
2021-11-11 11:23:49 +05:30
"tiptap": "^1.32.2",
"tiptap-extensions": "^1.35.2",
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",
2021-01-03 14:25:43 +05:30
"vue": "^2.6.12",
2020-05-24 23:13:21 +05:30
"vue-apollo": "^3.0.3",
2021-03-08 18:12:59 +05:30
"vue-loader": "^15.9.6",
2021-06-08 01:23:25 +05:30
"vue-observe-visibility": "^1.0.0",
"vue-resize": "^1.0.1",
2021-02-22 17:27:13 +05:30
"vue-router": "3.4.9",
2021-01-03 14:25:43 +05:30
"vue-template-compiler": "^2.6.12",
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",
2021-02-22 17:27:13 +05:30
"vuex": "^3.6.0",
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",
2021-06-08 01:23:25 +05:30
"webpack-bundle-analyzer": "^4.4.2",
2021-03-11 19:13:27 +05:30
"webpack-cli": "^3.3.12",
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",
2020-07-02 01:45:43 +05:30
"xterm": "3.14.5"
2017-08-17 22:00:37 +05:30
},
"devDependencies": {
2020-06-23 00:09:42 +05:30
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
2021-11-11 11:23:49 +05:30
"@gitlab/eslint-plugin": "9.3.0",
2021-04-17 20:07:23 +05:30
"@gitlab/stylelint-config": "2.3.0",
2020-07-28 23:09:34 +05:30
"@testing-library/dom": "^7.16.2",
2021-09-04 01:27:46 +05:30
"@vue/test-utils": "1.2.0",
2020-07-28 23:09:34 +05:30
"acorn": "^6.3.0",
2018-11-08 19:23:39 +05:30
"axios-mock-adapter": "^1.15.0",
2021-01-03 14:25:43 +05:30
"babel-jest": "^26.5.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-istanbul": "^6.0.0",
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",
2019-03-02 22:35:43 +05:30
"docdash": "^1.0.2",
2021-11-11 11:23:49 +05:30
"eslint": "7.32.0",
2021-03-11 19:13:27 +05:30
"eslint-import-resolver-jest": "3.0.0",
2021-06-08 01:23:25 +05:30
"eslint-import-resolver-webpack": "0.13.1",
2021-04-29 21:17:54 +05:30
"eslint-plugin-no-jquery": "2.6.0",
2021-03-11 19:13:27 +05:30
"gettext-extractor": "^3.5.3",
"gettext-extractor-vue": "^5.0.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",
2021-01-03 14:25:43 +05:30
"jest": "^26.5.2",
2019-12-26 22:10:19 +05:30
"jest-canvas-mock": "^2.1.2",
2021-01-03 14:25:43 +05:30
"jest-environment-jsdom": "^26.5.2",
"jest-junit": "^12.0.0",
2021-02-22 17:27:13 +05:30
"jest-raw-loader": "^1.0.1",
2021-03-11 19:13:27 +05:30
"jest-transform-graphql": "^2.1.0",
2021-01-03 14:25:43 +05:30
"jest-util": "^26.5.2",
2019-03-02 22:35:43 +05:30
"jsdoc": "^3.5.5",
"jsdoc-vue": "^1.0.0",
2021-06-08 01:23:25 +05:30
"markdownlint-cli": "0.26.0",
2019-07-07 11:18:12 +05:30
"md5": "^2.2.1",
2021-03-11 19:13:27 +05:30
"miragejs": "^0.1.40",
2021-06-08 01:23:25 +05:30
"mock-apollo-client": "^0.7.0",
2020-06-23 00:09:42 +05:30
"nodemon": "^2.0.4",
2019-07-07 11:18:12 +05:30
"postcss": "^7.0.14",
2021-03-08 18:12:59 +05:30
"prettier": "2.2.1",
2021-09-30 23:02:18 +05:30
"prosemirror-schema-basic": "^1.1.2",
2021-11-11 11:23:49 +05:30
"prosemirror-schema-list": "^1.1.5",
2021-09-30 23:02:18 +05:30
"prosemirror-test-builder": "^1.0.4",
2021-09-04 01:27:46 +05:30
"purgecss": "^4.0.3",
"purgecss-from-html": "^4.0.3",
2019-09-30 21:07:59 +05:30
"readdir-enhanced": "^2.2.4",
2021-06-08 01:23:25 +05:30
"sass": "^1.32.12",
2019-12-04 20:38:33 +05:30
"timezone-mock": "^1.0.8",
2021-04-17 20:07:23 +05:30
"vue-jest": "4.0.1",
2021-03-11 19:13:27 +05:30
"webpack-dev-server": "^3.11.2",
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",
2021-10-27 15:23:28 +05:30
"yarn-deduplicate": "^3.1.0"
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": {
2021-10-27 15:23:28 +05:30
"chokidar": "^3.4.0"
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
}
2020-04-22 19:07:51 +05:30
}