2019-10-17 12:38:09 +00:00
|
|
|
{
|
|
|
|
"name": "graph",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2021-03-23 22:55:52 +00:00
|
|
|
"@codemirror/autocomplete": "^0.18.3",
|
|
|
|
"@codemirror/closebrackets": "^0.18.0",
|
|
|
|
"@codemirror/commands": "^0.18.0",
|
|
|
|
"@codemirror/comment": "^0.18.0",
|
|
|
|
"@codemirror/highlight": "^0.18.3",
|
|
|
|
"@codemirror/history": "^0.18.0",
|
|
|
|
"@codemirror/language": "^0.18.0",
|
|
|
|
"@codemirror/lint": "^0.18.1",
|
|
|
|
"@codemirror/matchbrackets": "^0.18.0",
|
|
|
|
"@codemirror/search": "^0.18.2",
|
|
|
|
"@codemirror/state": "^0.18.2",
|
|
|
|
"@codemirror/view": "^0.18.3",
|
2021-04-15 16:14:07 +00:00
|
|
|
"@forevolve/bootstrap-dark": "^1.0.0",
|
2019-10-17 12:38:09 +00:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.14",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^5.7.1",
|
|
|
|
"@fortawesome/react-fontawesome": "^0.1.4",
|
2021-07-01 19:15:06 +00:00
|
|
|
"@nexucis/fuzzy": "^0.2.2",
|
2021-04-15 16:14:07 +00:00
|
|
|
"bootstrap": "^4.6.0",
|
2021-08-12 16:38:06 +00:00
|
|
|
"codemirror-promql": "^0.17.0",
|
2020-02-02 09:51:33 +00:00
|
|
|
"css.escape": "^1.5.1",
|
2020-08-22 19:02:50 +00:00
|
|
|
"downshift": "^3.4.8",
|
2019-10-17 12:38:09 +00:00
|
|
|
"i": "^0.3.6",
|
2020-08-14 23:44:13 +00:00
|
|
|
"jquery": "^3.5.1",
|
2019-10-17 12:38:09 +00:00
|
|
|
"jquery.flot.tooltip": "^0.9.0",
|
|
|
|
"moment": "^2.24.0",
|
|
|
|
"moment-timezone": "^0.5.23",
|
|
|
|
"popper.js": "^1.14.3",
|
2021-08-30 12:13:58 +00:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-copy-to-clipboard": "^5.0.4",
|
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-resize-detector": "^6.7.6",
|
2021-08-30 12:05:49 +00:00
|
|
|
"react-router-dom": "^5.2.1",
|
2021-08-30 12:13:58 +00:00
|
|
|
"react-scripts": "4.0.3",
|
|
|
|
"react-test-renderer": "^17.0.2",
|
2021-04-15 16:14:07 +00:00
|
|
|
"reactstrap": "^8.9.0",
|
2021-04-26 10:17:36 +00:00
|
|
|
"sanitize-html": "^2.3.3",
|
2021-05-06 19:16:06 +00:00
|
|
|
"sass": "1.32.10",
|
2019-10-17 12:38:09 +00:00
|
|
|
"tempusdominus-bootstrap-4": "^5.1.2",
|
|
|
|
"tempusdominus-core": "^5.0.3",
|
2021-08-30 12:13:58 +00:00
|
|
|
"typescript": "^4.4.2"
|
2019-10-17 12:38:09 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "react-scripts start",
|
|
|
|
"build": "react-scripts build",
|
2020-01-14 15:12:08 +00:00
|
|
|
"test": "react-scripts test --runInBand",
|
2019-10-28 17:09:48 +00:00
|
|
|
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
|
2019-10-28 14:02:42 +00:00
|
|
|
"eject": "react-scripts eject",
|
|
|
|
"lint:ci": "eslint --quiet \"src/**/*.{ts,tsx}\"",
|
|
|
|
"lint": "eslint --fix \"src/**/*.{ts,tsx}\""
|
2019-10-17 12:38:09 +00:00
|
|
|
},
|
2019-10-28 14:02:42 +00:00
|
|
|
"prettier": {
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "es5",
|
|
|
|
"printWidth": 125
|
2019-10-17 12:38:09 +00:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2021-08-30 12:13:58 +00:00
|
|
|
"@testing-library/react-hooks": "^7.0.1",
|
|
|
|
"@types/enzyme": "^3.10.9",
|
2019-10-17 12:38:09 +00:00
|
|
|
"@types/flot": "0.0.31",
|
2021-08-30 12:13:58 +00:00
|
|
|
"@types/jest": "^27.0.1",
|
2021-04-11 09:35:06 +00:00
|
|
|
"@types/jquery": "^3.5.1",
|
2019-10-17 12:38:09 +00:00
|
|
|
"@types/moment-timezone": "^0.5.10",
|
2021-08-30 12:13:58 +00:00
|
|
|
"@types/node": "^16.7.6",
|
|
|
|
"@types/react": "^17.0.19",
|
|
|
|
"@types/react-copy-to-clipboard": "^5.0.1",
|
|
|
|
"@types/react-dom": "^17.0.9",
|
2021-04-11 09:35:06 +00:00
|
|
|
"@types/react-resize-detector": "^5.0.0",
|
2021-08-30 12:05:49 +00:00
|
|
|
"@types/react-router-dom": "^5.1.8",
|
2021-04-15 16:14:07 +00:00
|
|
|
"@types/reactstrap": "^8.7.2",
|
|
|
|
"@types/sanitize-html": "^1.20.2",
|
2021-08-30 12:13:58 +00:00
|
|
|
"@types/sinon": "^10.0.2",
|
|
|
|
"@typescript-eslint/eslint-plugin": "4.x",
|
|
|
|
"@typescript-eslint/parser": "4.x",
|
|
|
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
|
2021-09-02 12:46:46 +00:00
|
|
|
"canvas": "^2.8.0",
|
2021-08-30 12:13:58 +00:00
|
|
|
"enzyme": "^3.11.0",
|
2021-09-02 12:46:46 +00:00
|
|
|
"enzyme-to-json": "^3.6.2",
|
2021-08-30 12:13:58 +00:00
|
|
|
"eslint": "7.x",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-config-react-app": "^6.0.0",
|
|
|
|
"eslint-plugin-flowtype": "5.x",
|
2019-10-28 14:02:42 +00:00
|
|
|
"eslint-plugin-import": "2.x",
|
|
|
|
"eslint-plugin-jsx-a11y": "6.x",
|
2021-08-30 12:13:58 +00:00
|
|
|
"eslint-plugin-prettier": "^3.4.1",
|
2019-10-28 14:02:42 +00:00
|
|
|
"eslint-plugin-react": "7.x",
|
2021-08-30 12:13:58 +00:00
|
|
|
"eslint-plugin-react-hooks": "4.x",
|
2020-08-22 19:02:50 +00:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2021-03-23 22:55:52 +00:00
|
|
|
"mutationobserver-shim": "^0.3.7",
|
2021-08-30 12:13:58 +00:00
|
|
|
"prettier": "^2.3.2",
|
|
|
|
"sinon": "^11.1.2"
|
2019-10-17 12:38:09 +00:00
|
|
|
},
|
2019-11-02 15:53:32 +00:00
|
|
|
"proxy": "http://localhost:9090",
|
|
|
|
"jest": {
|
|
|
|
"snapshotSerializers": [
|
|
|
|
"enzyme-to-json/serializer"
|
2021-03-23 22:55:52 +00:00
|
|
|
],
|
|
|
|
"transformIgnorePatterns": [
|
|
|
|
"/node_modules/(?!codemirror-promql).+(js|jsx)$"
|
2019-11-02 15:53:32 +00:00
|
|
|
]
|
2021-08-12 18:25:26 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"fsevents": "^2.3.2"
|
2019-11-02 15:53:32 +00:00
|
|
|
}
|
2019-10-17 12:38:09 +00:00
|
|
|
}
|