mirror of
https://github.com/Graylog2/graylog2-server.git
synced 2026-03-13 09:32:21 +08:00
163 lines
5.4 KiB
JSON
163 lines
5.4 KiB
JSON
{
|
|
"name": "graylog-web-interface",
|
|
"version": "4.1.0-SNAPSHOT",
|
|
"description": "Graylog Web Interface",
|
|
"author": "torch",
|
|
"license": "SSPL-1.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/graylog2/graylog2-web-interface.git"
|
|
},
|
|
"readme": "../README.md",
|
|
"scripts": {
|
|
"docs:build": "styleguidist build",
|
|
"docs:server": "styleguidist server",
|
|
"start": "node devServer.js",
|
|
"build": "cross-env disable_plugins=true webpack --config webpack.bundled.js",
|
|
"build:stats": "cross-env disable_plugins=true webpack --profile --json > ./webpack/stats-$(git rev-parse --abbrev-ref HEAD).json",
|
|
"build:analyze": "yarn build:stats && webpack-bundle-analyzer ./webpack/stats-$(git rev-parse --abbrev-ref HEAD).json ./target/web/build --mode=\"static\" --report=\"./webpack/analysis-$(git rev-parse --abbrev-ref HEAD).html\"",
|
|
"lint": "eslint src",
|
|
"lint:path": "eslint",
|
|
"lint:styles": "stylelint './src/**/*.{js,jsx}' --syntax css-in-js",
|
|
"lint:styles:path": "stylelint --syntax css-in-js --",
|
|
"lint:changes": "./dev/lintChanges.sh",
|
|
"test": "jest",
|
|
"check-production-build": "node checkProductionBuild.js"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "graylog"
|
|
},
|
|
"jest": {
|
|
"preset": "jest-preset-graylog",
|
|
"setupFiles": [
|
|
"<rootDir>/test/setup-jest.js"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"jest-enzyme",
|
|
"<rootDir>/test/configure-testing-library.js"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.28",
|
|
"@fortawesome/free-brands-svg-icons": "^5.13.0",
|
|
"@fortawesome/free-regular-svg-icons": "^5.13.0",
|
|
"@fortawesome/free-solid-svg-icons": "^5.13.0",
|
|
"@fortawesome/react-fontawesome": "^0.1.9",
|
|
"@openfonts/roboto-mono_latin": "^1.44.1",
|
|
"@react-bootstrap/pagination": "^1.0.0",
|
|
"ace-builds": "1.4.12",
|
|
"bluebird": "^3.4.0",
|
|
"bootstrap": "3.4.1",
|
|
"bson-objectid": "^1.2.5",
|
|
"chroma-js": "^2.0.3",
|
|
"classnames": "^2.2.0",
|
|
"clipboard": "^2.0.0",
|
|
"crossfilter": "1.3.x",
|
|
"dompurify": "^2.0.11",
|
|
"downloadjs": "^1.4.7",
|
|
"graylog-web-plugin": "file:packages/graylog-web-plugin",
|
|
"immutable": "^3.8.1",
|
|
"interactjs": "^1.4.0-rc.13",
|
|
"javascript-natural-sort": "^0.7.1",
|
|
"jquery-ui": "1.12.x",
|
|
"leaflet": "^1.5.1",
|
|
"loadable-components": "^2.2.3",
|
|
"lodash": "^4.17.4",
|
|
"marked": "^2.0.0",
|
|
"md5": "^2.2.1",
|
|
"moment": "^2.24.0",
|
|
"moment-duration-format": "2.3.2",
|
|
"mousetrap": "^1.6.5",
|
|
"numeral": "^2.0.6",
|
|
"opensans-npm-webfont": "1.0.0",
|
|
"plotly.js": "^1.58.4",
|
|
"qs": "^6.3.0",
|
|
"react-ace": "9.2.1",
|
|
"react-color": "^2.14.0",
|
|
"react-day-picker": "^7.4.8",
|
|
"react-dnd": "^11.1.3",
|
|
"react-dnd-html5-backend": "^11.1.3",
|
|
"react-grid-layout": "^0.18.3",
|
|
"react-immutable-proptypes": "^2.1.0",
|
|
"react-isolated-scroll": "^0.1.1",
|
|
"react-leaflet": "^2.3.0",
|
|
"react-mops": "v2.0.0-beta.0",
|
|
"react-overlays": "^0.7.0",
|
|
"react-plotly.js": "2.5.1",
|
|
"react-portal": "^4.2.0",
|
|
"react-resizable": "^1.8.0",
|
|
"react-rnd": "^10.1.1",
|
|
"react-select": "2.4.3",
|
|
"react-sizeme": "^2.6.7",
|
|
"react-sortable-hoc": "^1.7.1",
|
|
"react-ultimate-pagination": "^1.2.0",
|
|
"react-window": "^1.8.2",
|
|
"sockjs-client": "^1.4.0",
|
|
"superagent": "^6.1.0",
|
|
"superagent-bluebird-promise": "^4.1.0",
|
|
"terser-webpack-plugin": "^4.0.0",
|
|
"toastr": "^2.1.2",
|
|
"twix": "^1.1.4",
|
|
"typeahead.js": "^0.11.1",
|
|
"ua-parser-js": "^0.7.12",
|
|
"urijs": "^1.19.1",
|
|
"utility-types": "^3.10.0",
|
|
"uuid": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.8.4",
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
"@babel/plugin-transform-runtime": "^7.8.3",
|
|
"@babel/polyfill": "^7.8.3",
|
|
"@babel/preset-env": "^7.8.4",
|
|
"@babel/preset-react": "^7.8.3",
|
|
"@testing-library/user-event": "^12.6.3",
|
|
"@types/chroma-js": "^2.1.3",
|
|
"@types/lodash": "^4.14.165",
|
|
"@types/plotly.js": "1.54.8",
|
|
"@types/react-plotly.js": "^2.2.4",
|
|
"assets-webpack-plugin": "^5.1.2",
|
|
"babel-loader": "^8.2.2",
|
|
"babel-plugin-add-module-exports": "^1.0.2",
|
|
"babel-plugin-dynamic-import-node": "^2.3.0",
|
|
"babel-plugin-styled-components": "^1.10.6",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"compression": "^1.7.2",
|
|
"connect-history-api-fallback": "^1.4.0",
|
|
"copy-webpack-plugin": "^6.1.0",
|
|
"cors": "^2.8.5",
|
|
"cross-env": "^7.0.2",
|
|
"css-loader": "^5.0.1",
|
|
"enzyme": "3.11.0",
|
|
"enzyme-adapter-react-16": "^1.15.2",
|
|
"eslint-config-graylog": "file:packages/eslint-config-graylog",
|
|
"estraverse-fb": "^1.3.1",
|
|
"express": "^4.16.4",
|
|
"express-http-proxy": "^1.6.2",
|
|
"file-loader": "^6.0.0",
|
|
"fork-ts-checker-webpack-plugin": "^6.0.0",
|
|
"glob": "^7.0.0",
|
|
"html-webpack-plugin": "^4.2.0",
|
|
"json-loader": "^0.5.3",
|
|
"less": "^3.0.1",
|
|
"less-loader": "^7.0.0",
|
|
"puppeteer": "^2.1.1",
|
|
"react-styleguidist": "^11.0.8",
|
|
"style-loader": "2.0.0",
|
|
"stylelint": "^13.6.0",
|
|
"stylelint-config-standard": "20.0.0",
|
|
"url-loader": "^4.0.0",
|
|
"webpack-bundle-analyzer": "^3.5.2",
|
|
"webpack-cli": "3.3.12",
|
|
"webpack-dev-middleware": "^3.7.1",
|
|
"webpack-dev-server": "^3.8.0",
|
|
"webpack-hot-middleware": "^2.25.0",
|
|
"webpack-merge": "^4.2.2",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"resolutions": {
|
|
"jquery": "3.5.1"
|
|
}
|
|
}
|