debian-mirror-gitlab/package.json

211 lines
7.8 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",
2018-11-08 19:23:39 +05:30
"clean": "rm -rf public/assets tmp/cache/*-loader",
2019-07-07 11:18:12 +05:30
"dev-server": "NODE_OPTIONS=\"--max-old-space-size=3584\" nodemon -w 'config/webpack.config.js' --exec 'webpack-dev-server --config config/webpack.config.js'",
2018-11-08 19:23:39 +05:30
"eslint": "eslint --max-warnings 0 --report-unused-disable-directives --ext .js,.vue .",
"eslint-fix": "eslint --max-warnings 0 --report-unused-disable-directives --ext .js,.vue --fix .",
"eslint-report": "eslint --max-warnings 0 --ext .js,.vue --format html --output-file ./eslint-report.html --no-inline-config .",
2019-10-12 21:52:04 +05:30
"file-coverage": "scripts/frontend/file_test_coverage.js",
2019-09-04 21:01:54 +05:30
"prejest": "yarn check-dependencies",
"jest": "jest",
2019-07-31 22:56:46 +05:30
"jest-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
2019-03-02 22:35:43 +05:30
"jsdoc": "jsdoc -c config/jsdocs.config.js",
2019-09-04 21:01:54 +05:30
"prekarma": "yarn check-dependencies",
2018-10-15 14:42:47 +05:30
"karma": "BABEL_ENV=${BABEL_ENV:=karma} karma start --single-run true config/karma.config.js",
"karma-coverage": "BABEL_ENV=coverage karma start --single-run true config/karma.config.js",
"karma-start": "BABEL_ENV=karma karma start config/karma.config.js",
2019-12-04 20:38:33 +05:30
"markdownlint": "markdownlint -c .markdownlint.json 'doc/**/*.md'",
2018-11-08 19:23:39 +05:30
"postinstall": "node ./scripts/frontend/postinstall.js",
2018-12-13 13:39:08 +05:30
"prettier-staged": "node ./scripts/frontend/prettier.js check",
2018-05-09 12:01:36 +05:30
"prettier-staged-save": "node ./scripts/frontend/prettier.js save",
"prettier-all": "node ./scripts/frontend/prettier.js check-all",
"prettier-all-save": "node ./scripts/frontend/prettier.js save-all",
2019-10-12 21:52:04 +05:30
"stylelint": "node node_modules/stylelint/bin/stylelint.js app/assets/stylesheets/**/*.* ee/app/assets/stylesheets/**/*.* !**/vendors/**",
2019-07-07 11:18:12 +05:30
"stylelint-file": "node node_modules/stylelint/bin/stylelint.js",
"stylelint-create-utility-map": "node scripts/frontend/stylelint/stylelint-utility-map.js",
2019-09-04 21:01:54 +05:30
"test": "node scripts/frontend/test",
2019-07-07 11:18:12 +05:30
"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": {
2019-12-21 20:55:43 +05:30
"@babel/core": "^7.6.2",
2019-12-04 20:38:33 +05:30
"@babel/plugin-proposal-class-properties": "^7.5.5",
2019-03-02 22:35:43 +05:30
"@babel/plugin-proposal-json-strings": "^7.2.0",
2020-01-01 13:55:28 +05:30
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
2019-12-21 20:55:43 +05:30
"@babel/plugin-proposal-private-methods": "^7.6.0",
2019-03-02 22:35:43 +05:30
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
2019-12-21 20:55:43 +05:30
"@babel/preset-env": "^7.6.2",
2020-01-01 13:55:28 +05:30
"@gitlab/svgs": "^1.88.0",
"@gitlab/ui": "8.8.0",
"@gitlab/visual-review-tools": "1.5.1",
"@sentry/browser": "^5.10.2",
"@sourcegraph/code-host-integration": "^0.0.14",
2019-12-26 22:10:19 +05:30
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
2019-09-04 21:01:54 +05:30
"apollo-link": "^1.2.11",
"apollo-link-batch-http": "^1.2.11",
2019-07-07 11:18:12 +05:30
"apollo-upload-client": "^10.0.0",
"at.js": "^1.5.4",
2018-03-17 18:26:18 +05:30
"autosize": "^4.0.0",
2019-12-04 20:38:33 +05:30
"aws-sdk": "^2.526.0",
2019-09-30 21:07:59 +05:30
"axios": "^0.19.0",
2019-12-21 20:55:43 +05:30
"babel-loader": "^8.0.6",
2019-07-07 11:18:12 +05:30
"bootstrap": "4.3.1",
2018-03-17 18:26:18 +05:30
"brace-expansion": "^1.1.8",
2019-12-21 20:55:43 +05:30
"cache-loader": "^4.1.0",
2019-07-07 11:18:12 +05:30
"chart.js": "2.7.2",
2018-03-17 18:26:18 +05:30
"classlist-polyfill": "^1.2.0",
"clipboard": "^1.7.1",
2019-02-15 15:39:39 +05:30
"codesandbox-api": "^0.0.20",
2019-12-21 20:55:43 +05:30
"compression-webpack-plugin": "^3.0.0",
2019-10-12 21:52:04 +05:30
"copy-webpack-plugin": "^5.0.4",
2019-12-21 20:55:43 +05:30
"core-js": "^3.2.1",
2017-09-10 17:25:29 +05:30
"cropper": "^2.3.0",
2018-11-18 11:00:15 +05:30
"css-loader": "^1.0.0",
2019-02-15 15:39:39 +05:30
"d3": "^4.13.0",
2018-03-17 18:26:18 +05:30
"d3-scale": "^1.0.7",
"d3-selection": "^1.2.0",
2018-11-08 19:23:39 +05:30
"dateformat": "^3.0.3",
2019-12-26 22:10:19 +05:30
"deckar01-task_list": "^2.2.1",
2018-03-17 18:26:18 +05:30
"diff": "^3.4.0",
2019-03-02 22:35:43 +05:30
"document-register-element": "1.13.1",
2017-08-17 22:00:37 +05:30
"dropzone": "^4.2.0",
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",
2018-03-27 19:54:05 +05:30
"exports-loader": "^0.7.0",
2019-12-21 20:55:43 +05:30
"file-loader": "^4.2.0",
2018-11-18 11:00:15 +05:30
"formdata-polyfill": "^3.0.11",
2018-03-17 18:26:18 +05:30
"fuzzaldrin-plus": "^0.5.0",
"glob": "^7.1.2",
2019-02-15 15:39:39 +05:30
"graphql": "^14.0.2",
2018-03-27 19:54:05 +05:30
"imports-loader": "^0.8.0",
2017-08-17 22:00:37 +05:30
"jed": "^1.1.1",
2019-07-07 11:18:12 +05:30
"jest-transform-graphql": "^2.1.0",
2019-09-30 21:07:59 +05:30
"jquery": "^3.4.1",
2018-03-17 18:26:18 +05:30
"jquery-ujs": "1.2.2",
2019-07-07 11:18:12 +05:30
"jquery.caret": "^0.3.1",
2018-03-27 19:54:05 +05:30
"jquery.waitforimages": "^2.2.0",
2017-08-17 22:00:37 +05:30
"js-cookie": "^2.1.3",
"jszip": "^3.1.3",
"jszip-utils": "^0.0.2",
2019-02-02 18:00:53 +05:30
"katex": "^0.10.0",
2020-02-01 01:16:34 +05:30
"lodash": "^4.17.15",
2018-03-17 18:26:18 +05:30
"marked": "^0.3.12",
2019-12-26 22:10:19 +05:30
"mermaid": "^8.4.2",
2019-03-02 22:35:43 +05:30
"monaco-editor": "^0.15.6",
"monaco-editor-webpack-plugin": "^1.7.0",
2017-08-17 22:00:37 +05:30
"mousetrap": "^1.4.6",
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",
2019-07-07 11:18:12 +05:30
"popper.js": "^1.14.7",
2017-08-17 22:00:37 +05:30
"prismjs": "^1.6.0",
2019-03-02 22:35:43 +05:30
"prosemirror-markdown": "^1.3.0",
"prosemirror-model": "^1.6.4",
2017-08-17 22:00:37 +05:30
"raphael": "^2.2.7",
2019-12-21 20:55:43 +05:30
"raw-loader": "^3.1.0",
2019-12-26 22:10:19 +05:30
"sanitize-html": "^1.20.0",
2017-08-17 22:00:37 +05:30
"select2": "3.5.2-browserify",
2018-10-15 14:42:47 +05:30
"sha1": "^1.1.1",
2019-03-02 22:35:43 +05:30
"smooshpack": "^0.0.54",
2019-12-04 20:38:33 +05:30
"sortablejs": "^1.10.0",
2017-08-17 22:00:37 +05:30
"sql.js": "^0.4.0",
2018-11-08 19:23:39 +05:30
"stickyfilljs": "^2.0.5",
2019-12-21 20:55:43 +05:30
"style-loader": "^1.0.0",
2018-03-17 18:26:18 +05:30
"svg4everybody": "2.1.9",
2020-01-01 13:55:28 +05:30
"swagger-ui-dist": "^3.24.3",
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-01-01 13:55:28 +05:30
"timeago.js": "^4.0.1",
2019-03-02 22:35:43 +05:30
"tiptap": "^1.8.0",
"tiptap-commands": "^1.4.0",
"tiptap-extensions": "^1.8.0",
2018-10-15 14:42:47 +05:30
"underscore": "^1.9.0",
2019-12-21 20:55:43 +05:30
"url-loader": "^2.1.0",
2017-08-17 22:00:37 +05:30
"visibilityjs": "^1.2.4",
2019-07-07 11:18:12 +05:30
"vue": "^2.6.10",
"vue-apollo": "^3.0.0-beta.28",
2019-12-21 20:55:43 +05:30
"vue-loader": "^15.7.1",
2019-03-02 22:35:43 +05:30
"vue-router": "^3.0.2",
2019-07-07 11:18:12 +05:30
"vue-template-compiler": "^2.6.10",
"vue-virtual-scroll-list": "^1.3.1",
2019-12-04 20:38:33 +05:30
"vuedraggable": "^2.23.0",
2019-07-07 11:18:12 +05:30
"vuex": "^3.1.0",
2019-12-21 20:55:43 +05:30
"webpack": "^4.40.2",
"webpack-bundle-analyzer": "^3.5.1",
"webpack-cli": "^3.3.9",
"webpack-stats-plugin": "^0.3.0",
2018-11-18 11:00:15 +05:30
"worker-loader": "^2.0.0",
"xterm": "^3.5.0"
2017-08-17 22:00:37 +05:30
},
"devDependencies": {
2019-12-04 20:38:33 +05:30
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
2020-01-01 13:55:28 +05:30
"@gitlab/eslint-config": "^2.0.0",
2019-09-04 21:01:54 +05:30
"@gitlab/eslint-plugin-i18n": "^1.1.0",
2019-10-12 21:52:04 +05:30
"@gitlab/eslint-plugin-vue-i18n": "^1.2.0",
2019-02-15 15:39:39 +05:30
"@vue/test-utils": "^1.0.0-beta.25",
2018-11-08 19:23:39 +05:30
"axios-mock-adapter": "^1.15.0",
2019-07-07 11:18:12 +05:30
"babel-jest": "^24.1.0",
2019-02-15 15:39:39 +05:30
"babel-plugin-dynamic-import-node": "^2.2.0",
2018-12-05 23:21:45 +05:30
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-rewire": "^1.2.0",
2018-10-15 14:42:47 +05:30
"chalk": "^2.4.1",
2018-12-05 23:21:45 +05:30
"commander": "^2.18.0",
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",
2019-02-15 15:39:39 +05:30
"eslint": "~5.9.0",
"eslint-import-resolver-jest": "^2.1.1",
2018-12-05 23:21:45 +05:30
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-jasmine": "^2.10.1",
2019-07-07 11:18:12 +05:30
"eslint-plugin-jest": "^22.3.0",
2020-01-01 13:55:28 +05:30
"eslint-plugin-no-jquery": "^2.3.0",
2019-07-07 11:18:12 +05:30
"gettext-extractor": "^3.4.3",
"gettext-extractor-vue": "^4.0.2",
2019-02-15 15:39:39 +05:30
"graphql-tag": "^2.10.0",
2018-03-17 18:26:18 +05:30
"jasmine-core": "^2.9.0",
2018-11-18 11:00:15 +05:30
"jasmine-diff": "^0.1.3",
2017-08-17 22:00:37 +05:30
"jasmine-jquery": "^2.1.1",
2019-07-07 11:18:12 +05:30
"jest": "^24.1.0",
2019-12-26 22:10:19 +05:30
"jest-canvas-mock": "^2.1.2",
2019-07-07 11:18:12 +05:30
"jest-environment-jsdom": "^24.0.0",
"jest-junit": "^6.3.0",
"jest-util": "^24.0.0",
2019-03-02 22:35:43 +05:30
"jsdoc": "^3.5.5",
"jsdoc-vue": "^1.0.0",
2019-10-12 21:52:04 +05:30
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
2018-11-18 11:00:15 +05:30
"karma-jasmine": "^1.1.2",
2018-12-05 23:21:45 +05:30
"karma-junit-reporter": "^1.2.0",
2018-03-17 18:26:18 +05:30
"karma-mocha-reporter": "^2.2.5",
2017-08-17 22:00:37 +05:30
"karma-sourcemap-loader": "^0.3.7",
2019-10-12 21:52:04 +05:30
"karma-webpack": "^4.0.2",
2019-12-04 20:38:33 +05:30
"markdownlint-cli": "0.18.0",
2019-07-07 11:18:12 +05:30
"md5": "^2.2.1",
2019-09-04 21:01:54 +05:30
"node-sass": "^4.12.0",
2019-03-02 22:35:43 +05:30
"nodemon": "^1.18.9",
"pixelmatch": "^4.0.2",
2019-07-07 11:18:12 +05:30
"postcss": "^7.0.14",
2019-09-30 21:07:59 +05:30
"prettier": "1.18.2",
"readdir-enhanced": "^2.2.4",
2019-10-12 21:52:04 +05:30
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-scss": "^3.9.2",
2019-12-04 20:38:33 +05:30
"timezone-mock": "^1.0.8",
2019-07-07 11:18:12 +05:30
"vue-jest": "^4.0.0-beta.2",
2019-12-21 20:55:43 +05:30
"webpack-dev-server": "^3.8.1",
2019-07-07 11:18:12 +05:30
"yarn-deduplicate": "^1.1.1"
},
"resolutions": {
"vue-jest/ts-jest": "24.0.0"
2019-02-15 15:39:39 +05:30
},
"engines": {
2019-03-02 22:35:43 +05:30
"node": ">=8.10.0",
2019-02-15 15:39:39 +05:30
"yarn": "^1.10.0"
2017-08-17 22:00:37 +05:30
}
}