2016-07-22 16:54:58 -04:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2019-05-10 05:49:35 -04:00
|
|
|
"check-dependencies": "yarn check --integrity",
|
2018-05-29 12:40:18 -04:00
|
|
|
"clean": "rm -rf public/assets tmp/cache/*-loader",
|
2019-04-02 04:27:38 -04:00
|
|
|
"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-06-16 08:24:41 -04:00
|
|
|
"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 .",
|
2018-06-16 07:59:26 -04:00
|
|
|
"eslint-report": "eslint --max-warnings 0 --ext .js,.vue --format html --output-file ./eslint-report.html --no-inline-config .",
|
2019-05-10 05:49:35 -04:00
|
|
|
"prejest": "yarn check-dependencies",
|
|
|
|
"jest": "jest",
|
2019-04-25 09:38:15 -04:00
|
|
|
"jest-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
2019-01-14 16:46:21 -05:00
|
|
|
"jsdoc": "jsdoc -c config/jsdocs.config.js",
|
2019-05-10 05:49:35 -04:00
|
|
|
"prekarma": "yarn check-dependencies",
|
2018-04-23 01:55:29 -04:00
|
|
|
"karma": "BABEL_ENV=${BABEL_ENV:=karma} karma start --single-run true config/karma.config.js",
|
2018-04-10 05:54:36 -04:00
|
|
|
"karma-coverage": "BABEL_ENV=coverage karma start --single-run true config/karma.config.js",
|
2018-04-19 17:14:24 -04:00
|
|
|
"karma-start": "BABEL_ENV=karma karma start config/karma.config.js",
|
2018-06-25 15:30:37 -04:00
|
|
|
"postinstall": "node ./scripts/frontend/postinstall.js",
|
2018-10-22 13:47:03 -04:00
|
|
|
"prettier-staged": "node ./scripts/frontend/prettier.js check",
|
2018-03-14 15:32:36 -04:00
|
|
|
"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-04-09 04:21:42 -04:00
|
|
|
"stylelint": "node node_modules/stylelint/bin/stylelint.js app/assets/stylesheets/**/*.* ee/app/assets/stylesheets/**/*.* !**/vendors/** --custom-formatter node_modules/stylelint-error-string-formatter",
|
2019-03-26 04:13:21 -04:00
|
|
|
"stylelint-file": "node node_modules/stylelint/bin/stylelint.js",
|
|
|
|
"stylelint-create-utility-map": "node scripts/frontend/stylelint/stylelint-utility-map.js",
|
2019-04-10 15:55:11 -04:00
|
|
|
"test": "node scripts/frontend/test",
|
2019-04-02 04:27:38 -04:00
|
|
|
"webpack": "NODE_OPTIONS=\"--max-old-space-size=3584\" webpack --config config/webpack.config.js",
|
|
|
|
"webpack-prod": "NODE_OPTIONS=\"--max-old-space-size=3584\" NODE_ENV=production webpack --config config/webpack.config.js"
|
2016-07-22 16:54:58 -04:00
|
|
|
},
|
2016-10-18 18:46:48 -04:00
|
|
|
"dependencies": {
|
2019-05-18 13:45:40 -04:00
|
|
|
"@babel/core": "^7.4.4",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
2019-01-09 01:17:23 -05:00
|
|
|
"@babel/plugin-proposal-json-strings": "^7.2.0",
|
2019-05-18 13:45:40 -04:00
|
|
|
"@babel/plugin-proposal-private-methods": "^7.4.4",
|
2019-01-09 01:17:23 -05:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
|
|
"@babel/plugin-syntax-import-meta": "^7.2.0",
|
2019-05-18 13:45:40 -04:00
|
|
|
"@babel/preset-env": "^7.4.4",
|
2019-03-08 02:47:54 -05:00
|
|
|
"@gitlab/csslab": "^1.9.0",
|
2019-05-24 11:25:27 -04:00
|
|
|
"@gitlab/svgs": "^1.63.0",
|
2019-05-06 12:18:15 -04:00
|
|
|
"@gitlab/ui": "^3.10.0",
|
2019-04-02 03:26:09 -04:00
|
|
|
"apollo-cache-inmemory": "^1.5.1",
|
2019-02-27 11:04:01 -05:00
|
|
|
"apollo-client": "^2.5.1",
|
2019-04-02 03:26:09 -04:00
|
|
|
"apollo-upload-client": "^10.0.0",
|
2019-03-13 10:02:19 -04:00
|
|
|
"at.js": "^1.5.4",
|
2017-10-31 05:18:30 -04:00
|
|
|
"autosize": "^4.0.0",
|
2017-11-22 09:46:50 -05:00
|
|
|
"axios": "^0.17.1",
|
2019-01-09 00:47:25 -05:00
|
|
|
"babel-loader": "^8.0.5",
|
2019-03-08 02:47:54 -05:00
|
|
|
"bootstrap": "4.3.1",
|
2017-08-18 08:23:15 -04:00
|
|
|
"brace-expansion": "^1.1.8",
|
2019-01-09 00:47:25 -05:00
|
|
|
"cache-loader": "^2.0.1",
|
2019-02-08 11:09:24 -05:00
|
|
|
"chart.js": "2.7.2",
|
2017-11-24 02:03:33 -05:00
|
|
|
"classlist-polyfill": "^1.2.0",
|
2017-11-28 16:16:49 -05:00
|
|
|
"clipboard": "^1.7.1",
|
2018-11-30 05:52:45 -05:00
|
|
|
"codesandbox-api": "^0.0.20",
|
2018-09-19 16:00:00 -04:00
|
|
|
"compression-webpack-plugin": "^2.0.0",
|
2017-03-13 17:48:32 -04:00
|
|
|
"core-js": "^2.4.1",
|
2017-08-01 10:31:43 -04:00
|
|
|
"cropper": "^2.3.0",
|
2018-07-13 17:46:32 -04:00
|
|
|
"css-loader": "^1.0.0",
|
2018-11-27 10:33:04 -05:00
|
|
|
"d3": "^4.13.0",
|
2017-11-23 17:39:29 -05:00
|
|
|
"d3-array": "^1.2.1",
|
|
|
|
"d3-axis": "^1.0.8",
|
|
|
|
"d3-brush": "^1.0.4",
|
2019-04-02 06:51:30 -04:00
|
|
|
"d3-ease": "^1.0.3",
|
2017-11-23 17:39:29 -05:00
|
|
|
"d3-scale": "^1.0.7",
|
|
|
|
"d3-selection": "^1.2.0",
|
|
|
|
"d3-shape": "^1.2.0",
|
|
|
|
"d3-time": "^1.0.8",
|
|
|
|
"d3-time-format": "^2.1.1",
|
2019-04-02 06:51:30 -04:00
|
|
|
"d3-transition": "^1.1.1",
|
2018-07-02 03:46:40 -04:00
|
|
|
"dateformat": "^3.0.3",
|
2019-01-24 11:07:42 -05:00
|
|
|
"deckar01-task_list": "^2.2.0",
|
2017-11-22 04:08:30 -05:00
|
|
|
"diff": "^3.4.0",
|
2019-02-05 03:33:14 -05:00
|
|
|
"document-register-element": "1.13.1",
|
2017-02-16 15:24:45 -05:00
|
|
|
"dropzone": "^4.2.0",
|
2018-12-01 15:21:08 -05:00
|
|
|
"echarts": "^4.2.0-rc.2",
|
2019-02-01 11:24:11 -05:00
|
|
|
"emoji-regex": "^7.0.3",
|
2017-02-27 23:44:34 -05:00
|
|
|
"emoji-unicode-version": "^0.2.1",
|
2018-02-20 15:24:45 -05:00
|
|
|
"exports-loader": "^0.7.0",
|
2019-01-09 00:47:25 -05:00
|
|
|
"file-loader": "^3.0.1",
|
2018-07-20 08:08:23 -04:00
|
|
|
"formdata-polyfill": "^3.0.11",
|
2017-11-01 04:58:41 -04:00
|
|
|
"fuzzaldrin-plus": "^0.5.0",
|
2018-01-15 12:50:26 -05:00
|
|
|
"glob": "^7.1.2",
|
2018-11-27 10:10:40 -05:00
|
|
|
"graphql": "^14.0.2",
|
2018-02-20 15:24:45 -05:00
|
|
|
"imports-loader": "^0.8.0",
|
2017-04-15 11:07:31 -04:00
|
|
|
"jed": "^1.1.1",
|
2019-02-26 07:26:15 -05:00
|
|
|
"jest-transform-graphql": "^2.1.0",
|
2018-02-20 17:20:48 -05:00
|
|
|
"jquery": "^3.2.1",
|
2017-11-23 05:47:05 -05:00
|
|
|
"jquery-ujs": "1.2.2",
|
2019-03-13 10:02:19 -04:00
|
|
|
"jquery.caret": "^0.3.1",
|
2018-02-08 10:52:38 -05:00
|
|
|
"jquery.waitforimages": "^2.2.0",
|
2017-02-06 01:57:44 -05:00
|
|
|
"js-cookie": "^2.1.3",
|
2017-03-29 01:16:59 -04:00
|
|
|
"jszip": "^3.1.3",
|
|
|
|
"jszip-utils": "^0.0.2",
|
2019-01-17 21:52:11 -05:00
|
|
|
"katex": "^0.10.0",
|
2018-01-15 18:20:03 -05:00
|
|
|
"marked": "^0.3.12",
|
2019-04-26 01:07:53 -04:00
|
|
|
"mermaid": "^8.0.0",
|
2019-01-25 03:22:35 -05:00
|
|
|
"monaco-editor": "^0.15.6",
|
|
|
|
"monaco-editor-webpack-plugin": "^1.7.0",
|
2017-02-16 15:24:45 -05:00
|
|
|
"mousetrap": "^1.4.6",
|
2019-05-06 19:37:13 -04:00
|
|
|
"pdfjs-dist": "^2.0.943",
|
2017-10-18 07:31:01 -04:00
|
|
|
"pikaday": "^1.6.1",
|
2019-03-08 02:47:54 -05:00
|
|
|
"popper.js": "^1.14.7",
|
2017-04-11 13:50:21 -04:00
|
|
|
"prismjs": "^1.6.0",
|
2019-01-23 06:10:57 -05:00
|
|
|
"prosemirror-markdown": "^1.3.0",
|
|
|
|
"prosemirror-model": "^1.6.4",
|
2017-03-03 18:41:00 -05:00
|
|
|
"raphael": "^2.2.7",
|
2018-01-23 10:19:56 -05:00
|
|
|
"raven-js": "^3.22.1",
|
2019-01-09 00:47:25 -05:00
|
|
|
"raw-loader": "^1.0.0",
|
2018-01-09 03:39:22 -05:00
|
|
|
"sanitize-html": "^1.16.1",
|
2016-10-28 04:22:02 -04:00
|
|
|
"select2": "3.5.2-browserify",
|
2018-05-08 04:09:22 -04:00
|
|
|
"sha1": "^1.1.1",
|
2019-01-07 09:43:41 -05:00
|
|
|
"smooshpack": "^0.0.54",
|
2018-05-31 08:10:14 -04:00
|
|
|
"sortablejs": "^1.7.0",
|
2017-04-08 00:18:37 -04:00
|
|
|
"sql.js": "^0.4.0",
|
2018-05-21 17:27:34 -04:00
|
|
|
"stickyfilljs": "^2.0.5",
|
2019-01-09 00:47:25 -05:00
|
|
|
"style-loader": "^0.23.1",
|
2019-04-02 07:49:47 -04:00
|
|
|
"stylelint-error-string-formatter": "1.0.2",
|
2017-09-22 04:39:47 -04:00
|
|
|
"svg4everybody": "2.1.9",
|
2017-04-06 06:02:24 -04:00
|
|
|
"three": "^0.84.0",
|
|
|
|
"three-orbit-controls": "^82.1.0",
|
|
|
|
"three-stl-loader": "^1.0.4",
|
2017-11-22 17:06:16 -05:00
|
|
|
"timeago.js": "^3.0.2",
|
2019-01-23 06:10:57 -05:00
|
|
|
"tiptap": "^1.8.0",
|
|
|
|
"tiptap-commands": "^1.4.0",
|
|
|
|
"tiptap-extensions": "^1.8.0",
|
2018-05-07 05:08:43 -04:00
|
|
|
"underscore": "^1.9.0",
|
2019-01-09 00:47:25 -05:00
|
|
|
"url-loader": "^1.1.2",
|
2017-03-23 07:10:31 -04:00
|
|
|
"visibilityjs": "^1.2.4",
|
2019-03-27 17:33:20 -04:00
|
|
|
"vue": "^2.6.10",
|
2019-02-27 11:04:01 -05:00
|
|
|
"vue-apollo": "^3.0.0-beta.28",
|
2019-03-27 17:33:20 -04:00
|
|
|
"vue-loader": "^15.7.0",
|
2019-01-04 12:35:05 -05:00
|
|
|
"vue-resource": "^1.5.1",
|
|
|
|
"vue-router": "^3.0.2",
|
2019-03-27 17:33:20 -04:00
|
|
|
"vue-template-compiler": "^2.6.10",
|
|
|
|
"vue-virtual-scroll-list": "^1.3.1",
|
|
|
|
"vuex": "^3.1.0",
|
2019-01-25 03:22:35 -05:00
|
|
|
"webpack": "^4.29.0",
|
2019-01-09 00:47:25 -05:00
|
|
|
"webpack-bundle-analyzer": "^3.0.3",
|
|
|
|
"webpack-cli": "^3.2.1",
|
2018-04-27 17:04:02 -04:00
|
|
|
"webpack-stats-plugin": "^0.2.1",
|
2018-07-12 06:44:09 -04:00
|
|
|
"worker-loader": "^2.0.0",
|
|
|
|
"xterm": "^3.5.0"
|
2016-10-18 18:46:48 -04:00
|
|
|
},
|
2016-07-22 16:54:58 -04:00
|
|
|
"devDependencies": {
|
2019-02-28 06:34:47 -05:00
|
|
|
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
|
2019-04-04 12:20:15 -04:00
|
|
|
"@gitlab/eslint-config": "^1.5.0",
|
2018-11-26 03:46:38 -05:00
|
|
|
"@vue/test-utils": "^1.0.0-beta.25",
|
2018-05-09 13:57:01 -04:00
|
|
|
"axios-mock-adapter": "^1.15.0",
|
2019-02-28 06:34:47 -05:00
|
|
|
"babel-jest": "^24.1.0",
|
2019-03-05 04:07:16 -05:00
|
|
|
"babel-plugin-dynamic-import-node": "^2.2.0",
|
2018-10-02 02:09:58 -04:00
|
|
|
"babel-plugin-istanbul": "^5.1.0",
|
2018-09-19 17:11:41 -04:00
|
|
|
"babel-plugin-rewire": "^1.2.0",
|
2018-05-01 13:40:35 -04:00
|
|
|
"chalk": "^2.4.1",
|
2018-09-19 17:13:47 -04:00
|
|
|
"commander": "^2.18.0",
|
2019-04-01 14:55:57 -04:00
|
|
|
"custom-jquery-matchers": "^2.1.0",
|
2019-01-14 16:46:21 -05:00
|
|
|
"docdash": "^1.0.2",
|
2018-12-06 01:56:40 -05:00
|
|
|
"eslint": "~5.9.0",
|
2018-08-29 16:45:53 -04:00
|
|
|
"eslint-import-resolver-jest": "^2.1.1",
|
2018-09-20 02:18:33 -04:00
|
|
|
"eslint-import-resolver-webpack": "^0.10.1",
|
2018-12-06 01:56:40 -05:00
|
|
|
"eslint-plugin-html": "5.0.0",
|
2018-09-19 18:42:20 -04:00
|
|
|
"eslint-plugin-import": "^2.14.0",
|
2018-09-20 02:32:31 -04:00
|
|
|
"eslint-plugin-jasmine": "^2.10.1",
|
2019-02-28 06:34:47 -05:00
|
|
|
"eslint-plugin-jest": "^22.3.0",
|
2019-03-27 17:33:20 -04:00
|
|
|
"gettext-extractor": "^3.4.3",
|
|
|
|
"gettext-extractor-vue": "^4.0.2",
|
2018-11-27 10:10:40 -05:00
|
|
|
"graphql-tag": "^2.10.0",
|
2016-11-21 17:32:03 -05:00
|
|
|
"istanbul": "^0.4.5",
|
2018-01-23 10:19:56 -05:00
|
|
|
"jasmine-core": "^2.9.0",
|
2018-07-09 17:31:33 -04:00
|
|
|
"jasmine-diff": "^0.1.3",
|
2016-12-29 16:42:48 -05:00
|
|
|
"jasmine-jquery": "^2.1.1",
|
2019-02-28 06:34:47 -05:00
|
|
|
"jest": "^24.1.0",
|
2019-03-26 15:48:34 -04:00
|
|
|
"jest-environment-jsdom": "^24.0.0",
|
2019-02-28 06:34:47 -05:00
|
|
|
"jest-junit": "^6.3.0",
|
2019-03-26 15:48:34 -04:00
|
|
|
"jest-util": "^24.0.0",
|
2019-01-14 16:46:21 -05:00
|
|
|
"jsdoc": "^3.5.5",
|
|
|
|
"jsdoc-vue": "^1.0.0",
|
2018-09-07 07:48:50 -04:00
|
|
|
"karma": "^3.0.0",
|
2018-01-18 16:07:36 -05:00
|
|
|
"karma-chrome-launcher": "^2.2.0",
|
2018-10-02 02:09:58 -04:00
|
|
|
"karma-coverage-istanbul-reporter": "^2.0.4",
|
2018-07-13 17:46:32 -04:00
|
|
|
"karma-jasmine": "^1.1.2",
|
2018-09-11 17:03:05 -04:00
|
|
|
"karma-junit-reporter": "^1.2.0",
|
2018-01-18 16:07:36 -05:00
|
|
|
"karma-mocha-reporter": "^2.2.5",
|
2017-01-07 02:36:19 -05:00
|
|
|
"karma-sourcemap-loader": "^0.3.7",
|
2018-07-13 17:46:32 -04:00
|
|
|
"karma-webpack": "^4.0.0-beta.0",
|
2019-03-26 04:13:21 -04:00
|
|
|
"md5": "^2.2.1",
|
2019-05-15 04:25:55 -04:00
|
|
|
"node-sass": "^4.12.0",
|
2019-01-25 03:22:35 -05:00
|
|
|
"nodemon": "^1.18.9",
|
2018-10-30 07:46:44 -04:00
|
|
|
"pixelmatch": "^4.0.2",
|
2019-02-14 08:40:42 -05:00
|
|
|
"postcss": "^7.0.14",
|
2019-03-08 12:03:55 -05:00
|
|
|
"prettier": "1.16.4",
|
2019-02-14 08:40:42 -05:00
|
|
|
"stylelint": "^9.10.1",
|
|
|
|
"stylelint-config-recommended": "^2.1.0",
|
2019-03-26 04:13:21 -04:00
|
|
|
"stylelint-scss": "^3.5.4",
|
2019-02-28 06:34:47 -05:00
|
|
|
"vue-jest": "^4.0.0-beta.2",
|
2019-01-09 00:47:25 -05:00
|
|
|
"webpack-dev-server": "^3.1.14",
|
2019-03-07 12:53:17 -05:00
|
|
|
"yarn-deduplicate": "^1.1.1"
|
2018-12-06 03:17:36 -05:00
|
|
|
},
|
2019-02-28 06:34:47 -05:00
|
|
|
"resolutions": {
|
|
|
|
"vue-jest/ts-jest": "24.0.0"
|
|
|
|
},
|
2018-12-06 03:17:36 -05:00
|
|
|
"engines": {
|
2019-01-10 12:34:26 -05:00
|
|
|
"node": ">=8.10.0",
|
2018-12-06 03:17:36 -05:00
|
|
|
"yarn": "^1.10.0"
|
2016-07-22 16:54:58 -04:00
|
|
|
}
|
|
|
|
}
|