gitlab-org--gitlab-foss/package.json

163 lines
5.7 KiB
JSON
Raw Normal View History

{
"private": true,
"scripts": {
"clean": "rm -rf public/assets tmp/cache/*-loader",
"dev-server": "nodemon -w 'config/webpack.config.js' --exec 'webpack-dev-server --config config/webpack.config.js'",
"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 .",
2018-08-29 20:45:53 +00:00
"jest": "BABEL_ENV=jest jest --config=config/jest.config.js",
2018-04-23 05:55:29 +00:00
"karma": "BABEL_ENV=${BABEL_ENV:=karma} karma start --single-run true config/karma.config.js",
2018-04-10 09:54:36 +00:00
"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",
"postinstall": "node ./scripts/frontend/postinstall.js",
2018-10-22 17:47:03 +00:00
"prettier-staged": "node ./scripts/frontend/prettier.js check",
"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",
2017-02-06 06:23:50 +00:00
"webpack": "webpack --config config/webpack.config.js",
"webpack-prod": "NODE_ENV=production webpack --config config/webpack.config.js"
},
"dependencies": {
2018-10-02 06:09:58 +00:00
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.1.0",
2018-12-08 01:16:46 +00:00
"@gitlab/csslab": "^1.8.0",
2018-11-28 09:43:02 +00:00
"@gitlab/svgs": "^1.40.0",
"@gitlab/ui": "^1.15.0",
"apollo-boost": "^0.1.20",
"apollo-client": "^2.4.5",
"autosize": "^4.0.0",
2017-11-22 14:46:50 +00:00
"axios": "^0.17.1",
2018-10-02 06:09:58 +00:00
"babel-loader": "^8.0.4",
2018-11-28 08:53:29 +00:00
"bootstrap": "4.1.3",
"brace-expansion": "^1.1.8",
"cache-loader": "^1.2.2",
2018-02-19 20:43:10 +00:00
"chart.js": "1.0.2",
"classlist-polyfill": "^1.2.0",
"clipboard": "^1.7.1",
"codesandbox-api": "^0.0.20",
"compression-webpack-plugin": "^2.0.0",
"core-js": "^2.4.1",
"cropper": "^2.3.0",
"css-loader": "^1.0.0",
2018-11-27 15:33:04 +00:00
"d3": "^4.13.0",
"d3-array": "^1.2.1",
"d3-axis": "^1.0.8",
"d3-brush": "^1.0.4",
"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",
"dateformat": "^3.0.3",
2017-05-19 03:05:05 +00:00
"deckar01-task_list": "^2.0.0",
2017-11-22 09:08:30 +00:00
"diff": "^3.4.0",
"document-register-element": "1.3.0",
"dropzone": "^4.2.0",
"echarts": "^4.2.0-rc.2",
"emoji-unicode-version": "^0.2.1",
2018-02-20 20:24:45 +00:00
"exports-loader": "^0.7.0",
2018-09-21 05:36:25 +00:00
"file-loader": "^2.0.0",
2018-07-20 12:08:23 +00:00
"formdata-polyfill": "^3.0.11",
"fuzzaldrin-plus": "^0.5.0",
"glob": "^7.1.2",
"graphql": "^14.0.2",
2018-02-20 20:24:45 +00:00
"imports-loader": "^0.8.0",
"jed": "^1.1.1",
2018-02-20 22:20:48 +00:00
"jquery": "^3.2.1",
2017-11-23 10:47:05 +00:00
"jquery-ujs": "1.2.2",
"jquery.waitforimages": "^2.2.0",
"js-cookie": "^2.1.3",
"jszip": "^3.1.3",
"jszip-utils": "^0.0.2",
"katex": "^0.9.0",
2018-01-15 23:20:03 +00:00
"marked": "^0.3.12",
"mermaid": "^8.0.0-rc.8",
2018-09-05 11:56:03 +00:00
"monaco-editor": "^0.14.3",
"monaco-editor-webpack-plugin": "^1.5.4",
"mousetrap": "^1.4.6",
2017-10-18 11:31:01 +00:00
"pikaday": "^1.6.1",
"popper.js": "^1.14.3",
"prismjs": "^1.6.0",
"raphael": "^2.2.7",
"raven-js": "^3.22.1",
2017-02-24 18:35:25 +00:00
"raw-loader": "^0.5.1",
"sanitize-html": "^1.16.1",
"select2": "3.5.2-browserify",
2018-05-08 08:09:22 +00:00
"sha1": "^1.1.1",
"smooshpack": "^0.0.53",
"sortablejs": "^1.7.0",
"sql.js": "^0.4.0",
2018-05-21 21:27:34 +00:00
"stickyfilljs": "^2.0.5",
2018-09-21 05:36:25 +00:00
"style-loader": "^0.23.0",
"svg4everybody": "2.1.9",
2017-04-06 10:02:24 +00:00
"three": "^0.84.0",
"three-orbit-controls": "^82.1.0",
"three-stl-loader": "^1.0.4",
2017-11-22 22:06:16 +00:00
"timeago.js": "^3.0.2",
2018-05-07 09:08:43 +00:00
"underscore": "^1.9.0",
2018-09-21 05:36:25 +00:00
"url-loader": "^1.1.1",
2017-03-23 11:10:31 +00:00
"visibilityjs": "^1.2.4",
"vue": "^2.5.17",
"vue-apollo": "^3.0.0-beta.25",
"vue-loader": "^15.4.2",
2018-04-26 10:28:34 +00:00
"vue-resource": "^1.5.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"vue-virtual-scroll-list": "^1.2.5",
2017-11-22 22:08:11 +00:00
"vuex": "^3.0.1",
2018-09-21 06:07:50 +00:00
"webpack": "^4.19.1",
"webpack-bundle-analyzer": "^3.0.2",
2018-09-21 06:07:50 +00:00
"webpack-cli": "^3.1.0",
"webpack-stats-plugin": "^0.2.1",
"worker-loader": "^2.0.0",
"xterm": "^3.5.0"
},
"devDependencies": {
2018-11-19 20:44:12 +00:00
"@gitlab/eslint-config": "^1.2.0",
2018-11-26 08:46:38 +00:00
"@vue/test-utils": "^1.0.0-beta.25",
2018-05-09 17:57:01 +00:00
"axios-mock-adapter": "^1.15.0",
2018-08-29 20:45:53 +00:00
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
2018-10-02 06:09:58 +00:00
"babel-plugin-istanbul": "^5.1.0",
2018-09-19 21:11:41 +00:00
"babel-plugin-rewire": "^1.2.0",
2018-08-29 20:45:53 +00:00
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
2018-03-28 21:42:17 +00:00
"babel-template": "^6.26.0",
"babel-types": "^6.26.0",
"chalk": "^2.4.1",
"commander": "^2.18.0",
"eslint": "~5.6.0",
2018-08-29 20:45:53 +00:00
"eslint-import-resolver-jest": "^2.1.1",
2018-09-20 06:18:33 +00:00
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-html": "4.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jasmine": "^2.10.1",
2018-08-29 20:45:53 +00:00
"eslint-plugin-jest": "^22.1.0",
"gettext-extractor": "^3.3.2",
"gettext-extractor-vue": "^4.0.1",
"graphql-tag": "^2.10.0",
2016-11-21 22:32:03 +00:00
"istanbul": "^0.4.5",
"jasmine-core": "^2.9.0",
"jasmine-diff": "^0.1.3",
2016-12-29 21:42:48 +00:00
"jasmine-jquery": "^2.1.1",
2018-08-29 20:45:53 +00:00
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
2018-09-07 11:48:50 +00:00
"karma": "^3.0.0",
2018-01-18 21:07:36 +00:00
"karma-chrome-launcher": "^2.2.0",
2018-10-02 06:09:58 +00:00
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^1.1.2",
2018-09-11 21:03:05 +00:00
"karma-junit-reporter": "^1.2.0",
2018-01-18 21:07:36 +00:00
"karma-mocha-reporter": "^2.2.5",
2017-01-07 07:36:19 +00:00
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-beta.0",
"nodemon": "^1.18.4",
2018-11-07 23:12:37 +00:00
"prettier": "1.15.2",
2018-11-27 14:49:19 +00:00
"webpack-dev-server": "^3.1.10"
}
}