2022-06-03 08:09:47 -06:00
|
|
|
{
|
|
|
|
|
"name": "grafana-oncall-app",
|
2024-10-02 12:34:21 +02:00
|
|
|
"version": "1.9.28",
|
2022-06-03 08:09:47 -06:00
|
|
|
"description": "Grafana OnCall Plugin",
|
|
|
|
|
"scripts": {
|
2024-08-28 16:43:52 +02:00
|
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx --max-warnings=20 ./src ./e2e-tests",
|
|
|
|
|
"lint:fix": "eslint --max-warnings=20 --fix --ext .js,.jsx,.ts,.tsx ./src ./e2e-tests",
|
2022-11-02 11:44:42 +00:00
|
|
|
"stylelint": "stylelint ./src/**/*.{css,scss,module.css,module.scss}",
|
|
|
|
|
"stylelint:fix": "stylelint --fix ./src/**/*.{css,scss,module.css,module.scss}",
|
2024-06-20 13:54:07 +02:00
|
|
|
"build": "NODE_ENV=production webpack -c ./webpack.config.ts --env production",
|
|
|
|
|
"build:dev": "NODE_ENV=development webpack -c ./webpack.config.ts --env development",
|
2024-09-02 14:48:23 +02:00
|
|
|
"labels:link": "pnpm --dir ../../gops-labels/frontend link && pnpm link \"@grafana/labels\" && pnpm --dir ../../gops-labels/frontend watch",
|
|
|
|
|
"labels:unlink": "pnpm --dir ../../gops-labels/frontend unlink",
|
2024-09-23 11:56:16 -04:00
|
|
|
"mage:build-dev": "mage -v build:debug",
|
|
|
|
|
"mage:watch": "mage -v watch",
|
2024-04-09 17:06:11 +02:00
|
|
|
"test-utc": "TZ=UTC jest --verbose --testNamePattern '^((?!@london-tz).)*$'",
|
|
|
|
|
"test-london-tz": "TZ=Europe/London jest --verbose --testNamePattern '@london-tz'",
|
2024-09-02 14:48:23 +02:00
|
|
|
"test": "PLUGIN_ID=grafana-oncall-app pnpm test-utc && pnpm test-london-tz",
|
2024-08-20 12:07:33 +02:00
|
|
|
"test:ci": "PLUGIN_ID=grafana-oncall-app pnpm test-utc && pnpm test-london-tz",
|
2024-09-02 14:48:23 +02:00
|
|
|
"test:report": "HTML_REPORT_ENABLED=true pnpm test",
|
|
|
|
|
"test:silent": "pnpm test --silent",
|
|
|
|
|
"test:e2e": "PLUGIN_ID=grafana-oncall-app pnpm playwright test --grep-invert @expensive",
|
|
|
|
|
"test:e2e-expensive": "PLUGIN_ID=grafana-oncall-app pnpm playwright test --grep @expensive",
|
|
|
|
|
"test:e2e:watch": "pnpm test:e2e --ui",
|
|
|
|
|
"test:e2e-expensive:watch": "pnpm test:e2e-expensive --ui",
|
|
|
|
|
"test:e2e:gen": "pnpm playwright codegen http://localhost:3000",
|
|
|
|
|
"e2e-show-report": "pnpm playwright show-report --port 31000",
|
|
|
|
|
"generate-types": "cd ./src/network/oncall-api/types-generator && pnpm generate",
|
2024-09-13 14:44:20 +02:00
|
|
|
"dev": "NODE_ENV=development webpack -w -c ./webpack.config.ts --env development",
|
|
|
|
|
"serve": "serve -p 3001 ./dist",
|
|
|
|
|
"dev:serve": "concurrently --names \"serve,dev\" --prefix-colors \"blue,green\" \"pnpm serve\" \"pnpm dev\"",
|
2024-02-21 17:49:10 +03:00
|
|
|
"sign": "npx --yes @grafana/sign-plugin@latest",
|
2024-09-02 14:48:23 +02:00
|
|
|
"start": "pnpm watch",
|
2024-02-20 13:09:22 +01:00
|
|
|
"setversion": "setversion",
|
2024-08-28 16:43:52 +02:00
|
|
|
"type-check": "tsc --noEmit",
|
2024-09-02 14:48:23 +02:00
|
|
|
"type-check:watch": "pnpm type-check --watch --preserveWatchOutput false",
|
2024-03-06 09:06:03 +01:00
|
|
|
"find-dead-code": "knip"
|
2022-06-03 08:09:47 -06:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/grafana/oncall.git"
|
|
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"*.ts?(x)": [
|
|
|
|
|
"prettier --write",
|
|
|
|
|
"eslint --fix"
|
|
|
|
|
],
|
|
|
|
|
"*.js?(x)": [
|
|
|
|
|
"prettier --write",
|
|
|
|
|
"eslint --fix"
|
|
|
|
|
],
|
|
|
|
|
"*.css": [
|
|
|
|
|
"stylelint --fix"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"author": "Grafana Labs",
|
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
|
"devDependencies": {
|
2024-02-21 17:49:10 +03:00
|
|
|
"@grafana/eslint-config": "^6.0.0",
|
|
|
|
|
"@grafana/tsconfig": "^1.2.0-rc1",
|
2022-11-16 11:56:54 +02:00
|
|
|
"@jest/globals": "^27.5.1",
|
2024-08-20 12:07:33 +02:00
|
|
|
"@playwright/test": "1.46.0",
|
2024-02-21 17:49:10 +03:00
|
|
|
"@swc/core": "^1.3.90",
|
|
|
|
|
"@swc/helpers": "^0.5.0",
|
|
|
|
|
"@swc/jest": "^0.2.26",
|
2024-07-25 14:19:49 +02:00
|
|
|
"@testing-library/dom": "latest",
|
|
|
|
|
"@testing-library/jest-dom": "^6.4.2",
|
|
|
|
|
"@testing-library/react": "^14.1.2",
|
2022-11-21 16:26:00 +01:00
|
|
|
"@testing-library/user-event": "^14.4.3",
|
2022-08-25 19:31:42 +03:00
|
|
|
"@types/dompurify": "^2.3.4",
|
2024-03-28 11:37:22 -04:00
|
|
|
"@types/express": "^4.17.21",
|
2024-02-21 17:49:10 +03:00
|
|
|
"@types/jest": "^29.5.0",
|
|
|
|
|
"@types/lodash": "^4.14.194",
|
2022-08-25 19:31:42 +03:00
|
|
|
"@types/lodash-es": "^4.17.6",
|
2024-07-16 13:16:23 +02:00
|
|
|
"@types/node": "^20.14.10",
|
2022-11-21 16:26:00 +01:00
|
|
|
"@types/query-string": "^6.3.0",
|
2024-08-28 16:43:52 +02:00
|
|
|
"@types/react": "18.2.0",
|
2022-08-25 19:31:42 +03:00
|
|
|
"@types/react-copy-to-clipboard": "^5.0.4",
|
2024-08-28 16:43:52 +02:00
|
|
|
"@types/react-dom": "18.2.0",
|
2022-08-25 19:31:42 +03:00
|
|
|
"@types/react-responsive": "^8.0.5",
|
2023-11-29 14:11:31 +02:00
|
|
|
"@types/react-test-renderer": "^18.0.5",
|
2022-11-21 16:26:00 +01:00
|
|
|
"@types/react-transition-group": "^4.4.5",
|
2024-02-21 17:49:10 +03:00
|
|
|
"@types/testing-library__jest-dom": "5.14.8",
|
2022-08-25 19:31:42 +03:00
|
|
|
"@types/throttle-debounce": "^5.0.0",
|
2022-10-24 14:27:03 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
2022-08-25 19:31:42 +03:00
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
2024-02-21 17:49:10 +03:00
|
|
|
"css-loader": "^6.7.3",
|
chore(deps-dev): bump dompurify from 2.5.6 to 3.2.4 in /grafana-plugin (#5482)
Bumps [dompurify](https://github.com/cure53/DOMPurify) from 2.5.6 to
3.2.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cure53/DOMPurify/releases">dompurify's
releases</a>.</em></p>
<blockquote>
<h2>DOMPurify 3.2.4</h2>
<ul>
<li>Fixed a conditional and config dependent mXSS-style <a
href="https://nsysean.github.io/posts/dompurify-323-bypass/">bypass</a>
reported by <a
href="https://github.com/nsysean"><code>@nsysean</code></a></li>
<li>Added a new feature to allow specific hook removal, thanks <a
href="https://github.com/davecardwell"><code>@davecardwell</code></a></li>
<li>Added <em>purify.js</em> and <em>purify.min.js</em> to exports,
thanks <a
href="https://github.com/Aetherinox"><code>@Aetherinox</code></a></li>
<li>Added better logic in case no window object is president, thanks <a
href="https://github.com/yehuya"><code>@yehuya</code></a></li>
<li>Updated some dependencies called out by dependabot</li>
<li>Updated license files etc to show the correct year</li>
</ul>
<h2>DOMPurify 3.2.3</h2>
<ul>
<li>Fixed two conditional sanitizer bypasses discovered by <a
href="https://github.com/parrot409"><code>@parrot409</code></a> and <a
href="https://x.com/slonser_"><code>@Slonser</code></a></li>
<li>Updated the attribute clobbering checks to prevent future bypasses,
thanks <a
href="https://github.com/parrot409"><code>@parrot409</code></a></li>
</ul>
<h2>DOMPurify 3.2.2</h2>
<ul>
<li>Fixed a possible bypass in case a rather specific config for custom
elements is set, thanks <a
href="https://github.com/yaniv-git"><code>@yaniv-git</code></a></li>
<li>Fixed several minor issues with the type definitions, thanks again
<a href="https://github.com/reduckted"><code>@reduckted</code></a></li>
<li>Fixed a minor issue with the types reference for trusted types,
thanks <a
href="https://github.com/reduckted"><code>@reduckted</code></a></li>
<li>Fixed a minor problem with the template detection regex on some
systems, thanks <a
href="https://github.com/svdb99"><code>@svdb99</code></a></li>
</ul>
<h2>DOMPurify 3.2.1</h2>
<ul>
<li>Fixed several minor issues with the type definitions, thanks <a
href="https://github.com/reduckted"><code>@reduckted</code></a> <a
href="https://github.com/ghiscoding"><code>@ghiscoding</code></a> <a
href="https://github.com/asamuzaK"><code>@asamuzaK</code></a> <a
href="https://github.com/MiniDigger"><code>@MiniDigger</code></a></li>
<li>Fixed an issue with non-minified dist files and order of imports,
thanks <a
href="https://github.com/reduckted"><code>@reduckted</code></a></li>
</ul>
<h2>DOMPurify 3.2.0</h2>
<ul>
<li>Added type declarations, thanks <a
href="https://github.com/reduckted"><code>@reduckted</code></a> , <a
href="https://github.com/philmayfield"><code>@philmayfield</code></a>,
<a href="https://github.com/aloisklink"><code>@aloisklink</code></a>,
<a href="https://github.com/ssi02014"><code>@ssi02014</code></a> and
others</li>
<li>Fixed a minor issue with the handling of hooks, thanks <a
href="https://github.com/kevin-mizu"><code>@kevin-mizu</code></a></li>
</ul>
<h2>DOMPurify 3.1.7</h2>
<ul>
<li>Fixed an issue with comment detection and possible bypasses with
specific config settings, thanks <a
href="https://github.com/masatokinugawa"><code>@masatokinugawa</code></a></li>
<li>Fixed several smaller typos in documentation and test & build
files, thanks <a
href="https://github.com/christianhg"><code>@christianhg</code></a></li>
<li>Added better support for Angular compiler, thanks <a
href="https://github.com/jeroen1602"><code>@jeroen1602</code></a></li>
<li>Added several new attributes to HTML and SVG allow-list, thanks <a
href="https://github.com/Gigabyte5671"><code>@Gigabyte5671</code></a>
and <a href="https://github.com/Rotzbua"><code>@Rotzbua</code></a></li>
<li>Removed the <code>foreignObject</code> element from the list of HTML
entry-points, thanks <a
href="https://github.com/masatokinugawa"><code>@masatokinugawa</code></a></li>
<li>Bumped several dependencies to be more up to date</li>
</ul>
<h2>DOMPurify 3.1.6</h2>
<ul>
<li>Fixed an issue with the execution logic of attribute hooks to
prevent bypasses, thanks <a
href="https://github.com/kevin-mizu"><code>@kevin-mizu</code></a></li>
<li>Fixed an issue with element removal leading to uncaught errors
through DOM Clobbering, thanks <a
href="https://github.com/realansgar"><code>@realansgar</code></a></li>
<li>Fixed a minor problem with the bower file pointing to the wrong dist
path</li>
<li>Fixed several minor typos in docs, comments and comment blocks,
thanks <a
href="https://github.com/Rotzbua"><code>@Rotzbua</code></a></li>
<li>Updated several development dependencies</li>
</ul>
<h2>DOMPurify 3.1.5</h2>
<ul>
<li>Fixed a minor issue with the dist paths in <code>bower.js</code>,
thanks <a
href="https://github.com/HakumenNC"><code>@HakumenNC</code></a></li>
<li>Fixed a minor issue with sanitizing HTML coming from copy&paste
Word content, thanks <a
href="https://github.com/kakao-bishop-cho"><code>@kakao-bishop-cho</code></a></li>
</ul>
<h2>DOMPurify 3.1.4</h2>
<ul>
<li>Fixed an issue with the recently implemented <code>isNaN</code>
checks, thanks <a
href="https://github.com/tulach"><code>@tulach</code></a></li>
<li>Added several new popover attributes to allow-list, thanks <a
href="https://github.com/Gigabyte5671"><code>@Gigabyte5671</code></a></li>
<li>Fixed the tests and adjusted the test runner to cover all
branches</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cure53/DOMPurify/commit/ec29e65f3675077c1a78e6edcab97f797f004a2e"><code>ec29e65</code></a>
Merge pull request <a
href="https://redirect.github.com/cure53/DOMPurify/issues/1062">#1062</a>
from cure53/main</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/1c1b1838625851939d4b86436feeb3e3ccb7dbb6"><code>1c1b183</code></a>
chore: Preparing 3.2.4 release</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/d18ffcb554e0001748865da03ac75dd7829f0f02"><code>d18ffcb</code></a>
fix: Changed the template literal regex to avoid a config-dependent
bypass</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/0d64d2b12f9ecaa28899c60aba0b9ed5072c4d93"><code>0d64d2b</code></a>
Merge pull request <a
href="https://redirect.github.com/cure53/DOMPurify/issues/1060">#1060</a>
from yehuya/initializeTestImprovements</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/9ad79331566e0671788b120cc1f682f4e7f33f44"><code>9ad7933</code></a>
tests: DOMPurify custom window tests improvements</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/72760ca8ee425c3129420390d4c10afe698ff2fb"><code>72760ca</code></a>
Merge pull request <a
href="https://redirect.github.com/cure53/DOMPurify/issues/1059">#1059</a>
from yehuya/fixMissingWindowElement</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/bc72d44b2e3cec00d8ef2427869d03cb668969fa"><code>bc72d44</code></a>
Fix tests</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/363a89dd3a051b72334cd4d0c867616fdc4ee40d"><code>363a89d</code></a>
fix: handle undefined Element in DOMPurify initialization</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/f41b45df18a9666a50c1ad2662cee259230cfef4"><code>f41b45d</code></a>
Update LICENSE</li>
<li><a
href="https://github.com/cure53/DOMPurify/commit/b25bf26d674ff4db9074cef01fc51490cb1369a0"><code>b25bf26</code></a>
Update README.md</li>
<li>Additional commits viewable in <a
href="https://github.com/cure53/DOMPurify/compare/2.5.6...3.2.4">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/grafana/oncall/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-06 09:24:15 -05:00
|
|
|
"dompurify": "^3.2.4",
|
2022-10-24 14:27:03 +02:00
|
|
|
"eslint": "^8.25.0",
|
2024-02-21 17:49:10 +03:00
|
|
|
"eslint-plugin-deprecation": "^2.0.0",
|
2023-05-17 22:12:51 +02:00
|
|
|
"eslint-plugin-jsdoc": "^44.2.4",
|
2024-04-15 13:55:50 +02:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2022-10-24 14:27:03 +02:00
|
|
|
"eslint-plugin-react": "^7.31.10",
|
|
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2022-06-03 08:09:47 -06:00
|
|
|
"eslint-plugin-rulesdir": "^0.2.1",
|
2024-02-26 14:52:26 +01:00
|
|
|
"eslint-plugin-unused-imports": "^3.1.0",
|
2024-02-21 17:49:10 +03:00
|
|
|
"eslint-webpack-plugin": "^4.0.1",
|
2025-04-18 13:51:05 +02:00
|
|
|
"express": "^4.21.2",
|
2024-02-21 17:49:10 +03:00
|
|
|
"fork-ts-checker-webpack-plugin": "^8.0.0",
|
|
|
|
|
"glob": "^10.2.7",
|
|
|
|
|
"identity-obj-proxy": "3.0.0",
|
|
|
|
|
"jest": "^29.5.0",
|
|
|
|
|
"jest-environment-jsdom": "^29.5.0",
|
2024-03-12 13:21:53 +01:00
|
|
|
"jest-html-reporters": "^3.1.7",
|
2024-03-06 09:06:03 +01:00
|
|
|
"knip": "^5.0.3",
|
2022-06-03 08:09:47 -06:00
|
|
|
"lint-staged": "^10.2.11",
|
2022-08-25 19:31:42 +03:00
|
|
|
"lodash-es": "^4.17.21",
|
first UI integration test - phone verification + receive SMS alert flow (#900)
**What this PR does**:
Adds our first UI integration test using
[Playwright](https://playwright.dev/) and runs the test on CI. Right now
the test:
- logs into Grafana
- configures the plugin (if it isn't already)
- creates an OnCall schedule, where the current user will be OnCall
- creates an escalation chain to notify based on the newly created
OnCall schedule
- creates a webhook integration, attached to the created escalation
chain
- sends a demo alert for the new integration
- goes to the alert groups page and validates that the escalation step
to alert the OnCall user actually happened
Currently the Playwright tests are run against the 3 default headless
browsers, chromium, Firefox, and webkit. The CI job that runs these
tests is run as a matrix against 3 tagged versions of `grafana`; `main`,
`latest`, and `9.2.6`.
Secondly, it adds most of the logic for a second test which:
- logs into Grafana
- configures the plugin (if it isn't already)
- goes to the user's settings, verifies their phone number (using a tool
called [MailSlurp](https://www.mailslurp.com/))
- configures the current user's default escalation policy to send alerts
via SMS
- creates an escalation policy and configures it to send alerts to our
current user
- creates an integration and assigns the created escalation policy
- triggers a test alert + verifies that we receive the SMS alert text
(again, using MailSlurp)
**Which issue(s) this PR fixes**:
Closes #873
**Checklist**
- [x] Tests updated
- [ ] Documentation added (N/A)
- [ ] `CHANGELOG.md` updated (N/A)
2023-03-06 17:28:52 +01:00
|
|
|
"mailslurp-client": "^15.14.1",
|
2024-08-28 16:43:52 +02:00
|
|
|
"moment-timezone": "0.5.45",
|
2024-09-09 09:17:23 -03:00
|
|
|
"openapi-typescript": "^7.4.0",
|
2022-08-26 12:26:33 +03:00
|
|
|
"postcss-loader": "^7.0.1",
|
2024-02-21 17:49:10 +03:00
|
|
|
"prettier": "^2.8.7",
|
2023-11-29 14:11:31 +02:00
|
|
|
"react-test-renderer": "^18.0.2",
|
2024-02-21 17:49:10 +03:00
|
|
|
"replace-in-file-webpack-plugin": "^1.0.6",
|
|
|
|
|
"sass": "1.63.2",
|
|
|
|
|
"sass-loader": "13.3.1",
|
2024-02-27 14:21:53 +00:00
|
|
|
"semver": "^7.6.0",
|
2024-09-13 14:44:20 +02:00
|
|
|
"serve": "^14.2.3",
|
2024-02-21 17:49:10 +03:00
|
|
|
"style-loader": "3.3.3",
|
2022-10-24 14:27:03 +02:00
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
|
|
|
|
"stylelint-prettier": "^2.0.0",
|
2024-02-21 17:49:10 +03:00
|
|
|
"swc-loader": "^0.2.3",
|
2022-11-03 16:20:20 +02:00
|
|
|
"ts-jest": "29.0.3",
|
2023-11-29 06:16:13 +01:00
|
|
|
"ts-node": "^10.9.1",
|
2024-02-21 17:49:10 +03:00
|
|
|
"tsconfig-paths": "^4.2.0",
|
2024-07-25 14:19:49 +02:00
|
|
|
"typescript": "5.1",
|
2024-02-21 17:49:10 +03:00
|
|
|
"webpack": "^5.86.0",
|
2024-01-15 11:38:36 +01:00
|
|
|
"webpack-bundle-analyzer": "^4.6.1",
|
2024-02-21 17:49:10 +03:00
|
|
|
"webpack-cli": "^5.1.4",
|
2024-01-15 11:38:36 +01:00
|
|
|
"webpack-livereload-plugin": "^3.0.2"
|
2022-06-03 08:09:47 -06:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-11-29 14:11:31 +02:00
|
|
|
"@dnd-kit/core": "^6.0.8",
|
2024-01-18 13:15:13 +02:00
|
|
|
"@dnd-kit/modifiers": "^7.0.0",
|
2023-11-29 14:11:31 +02:00
|
|
|
"@dnd-kit/sortable": "^7.0.2",
|
|
|
|
|
"@dnd-kit/utilities": "^3.2.1",
|
2024-02-21 17:49:10 +03:00
|
|
|
"@emotion/css": "11.10.6",
|
2024-08-13 12:18:20 +02:00
|
|
|
"@grafana/data": "^11.1.3",
|
2024-03-11 10:49:54 +01:00
|
|
|
"@grafana/faro-web-sdk": "^1.4.2",
|
|
|
|
|
"@grafana/faro-web-tracing": "^1.4.2",
|
2024-10-01 14:59:24 +02:00
|
|
|
"@grafana/labels": "^1.6.6",
|
2024-08-13 12:18:20 +02:00
|
|
|
"@grafana/runtime": "^11.1.3",
|
2024-01-05 08:05:31 +01:00
|
|
|
"@grafana/scenes": "^1.28.0",
|
2024-08-13 12:18:20 +02:00
|
|
|
"@grafana/schema": "^11.1.3",
|
|
|
|
|
"@grafana/ui": "^11.1.3",
|
2023-11-30 12:05:13 +01:00
|
|
|
"@lifeomic/attempt": "^3.0.3",
|
2022-06-17 12:19:34 +03:00
|
|
|
"array-move": "^4.0.0",
|
2025-03-13 08:19:01 -04:00
|
|
|
"axios": "^1.8.2",
|
2022-06-03 08:09:47 -06:00
|
|
|
"change-case": "^4.1.1",
|
|
|
|
|
"circular-dependency-plugin": "^5.2.2",
|
2024-06-07 15:59:00 +02:00
|
|
|
"classnames": "^2.3.2",
|
2022-09-07 16:05:19 +03:00
|
|
|
"dayjs": "^1.11.5",
|
2024-03-06 09:06:03 +01:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2023-11-29 14:11:31 +02:00
|
|
|
"immutability-helper": "^3.1.1",
|
2024-06-24 21:08:50 +02:00
|
|
|
"linkify-react": "^4.1.3",
|
|
|
|
|
"linkifyjs": "^4.1.3",
|
2024-01-03 14:37:01 +03:00
|
|
|
"mobx": "6.12.0",
|
|
|
|
|
"mobx-react": "9.1.0",
|
2023-01-31 20:00:14 +03:00
|
|
|
"object-hash": "^3.0.0",
|
2023-11-29 06:16:13 +01:00
|
|
|
"openapi-fetch": "^0.8.1",
|
2023-11-14 15:28:05 +01:00
|
|
|
"qrcode.react": "^3.1.0",
|
2024-06-07 15:59:00 +02:00
|
|
|
"query-string": "^7.1.1",
|
2023-02-24 13:14:45 +02:00
|
|
|
"raw-loader": "^4.0.2",
|
2022-06-03 08:09:47 -06:00
|
|
|
"rc-table": "^7.17.1",
|
2024-02-21 17:49:10 +03:00
|
|
|
"react": "18.2.0",
|
2022-06-03 08:09:47 -06:00
|
|
|
"react-copy-to-clipboard": "^5.0.2",
|
2024-02-21 17:49:10 +03:00
|
|
|
"react-dom": "18.2.0",
|
2022-06-17 12:19:34 +03:00
|
|
|
"react-draggable": "^4.4.5",
|
2022-06-03 08:09:47 -06:00
|
|
|
"react-emoji-render": "^1.2.4",
|
2024-03-04 13:43:05 +02:00
|
|
|
"react-hook-form": "^7.50.1",
|
2022-06-17 12:19:34 +03:00
|
|
|
"react-modal": "^3.15.1",
|
2022-06-03 08:09:47 -06:00
|
|
|
"react-responsive": "^8.1.0",
|
2024-07-26 13:36:20 +03:00
|
|
|
"react-router-dom-v5-compat": "^6.25.1",
|
2022-06-03 08:09:47 -06:00
|
|
|
"react-sortable-hoc": "^1.11.0",
|
|
|
|
|
"react-string-replace": "^0.4.4",
|
2022-08-29 13:19:56 +03:00
|
|
|
"react-transition-group": "^4.4.5",
|
2024-06-07 15:59:00 +02:00
|
|
|
"react-use": "^17.4.0",
|
2024-08-20 15:06:54 -04:00
|
|
|
"stylelint": "^14.0.0",
|
2022-06-03 08:09:47 -06:00
|
|
|
"stylelint-config-standard": "^22.0.0",
|
2024-02-21 17:49:10 +03:00
|
|
|
"throttle-debounce": "^2.1.0",
|
2024-04-29 11:13:26 +03:00
|
|
|
"tinycolor2": "^1.6.0",
|
2024-02-21 17:49:10 +03:00
|
|
|
"tslib": "2.5.3"
|
2024-08-20 10:29:01 -04:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
2024-08-20 15:06:54 -04:00
|
|
|
"braces": "3.0.3",
|
2024-10-01 14:59:24 +02:00
|
|
|
"micromatch": "4.0.8"
|
2025-04-18 13:51:05 +02:00
|
|
|
},
|
|
|
|
|
"pnpm": {
|
|
|
|
|
"overrides": {
|
|
|
|
|
"uplot@<1.6.31": ">=1.6.31",
|
|
|
|
|
"send@<0.19.0": ">=0.19.0",
|
|
|
|
|
"path-to-regexp@<0.1.12": ">=0.1.12",
|
|
|
|
|
"path-to-regexp@>=2.0.0 <3.3.0": ">=3.3.0",
|
|
|
|
|
"prismjs@<1.30.0": ">=1.30.0",
|
|
|
|
|
"@babel/runtime@<7.26.10": ">=7.26.10",
|
|
|
|
|
"@babel/helpers@<7.26.10": ">=7.26.10",
|
|
|
|
|
"cookie@<0.7.0": ">=0.7.0"
|
|
|
|
|
}
|
2024-06-07 15:59:00 +02:00
|
|
|
}
|
2022-06-03 08:09:47 -06:00
|
|
|
}
|