forked from grafana/pyroscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "grafana-pyroscope",
"version": "0.0.1",
"repository": "git@github.com:grafana/phlare.git",
"author": "Grafana Labs",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"test": "jest",
"type-check": "tsc -p tsconfig.json --noEmit",
"build": "NODE_ENV=production webpack --progress --config scripts/webpack/webpack.prod.js",
"dev": "NODE_ENV=development webpack serve --progress --color --config scripts/webpack/webpack.dev.js",
"cy": "cypress",
"lint": "eslint . --ext .js,.tsx,.ts --cache",
"lint:fix": "yarn lint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"devDependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@grafana/eslint-config": "^5.1.0",
"@swc/core": "^1.3.55",
"@swc/jest": "^0.2.26",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/color": "^3.0.2",
"@types/d3-scale": "^4.0.2",
"@types/flot": "^0.0.32",
"@types/history": "4.7.11",
"@types/jest": "^29.5.0",
"@types/jquery": "^3.5.13",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.groupby": "^4.6.7",
"@types/lodash.map": "^4.6.13",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.0",
"@types/react-datepicker": "^4.3.4",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.5",
"@types/react-outside-click-handler": "^1.3.1",
"@types/react-router-dom": "5.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"copy-webpack-plugin": "^11.0.0",
"cypress": "^12.11.0",
"esbuild-loader": "^3.0.1",
"eslint": "^8.40.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^44.2.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"expose-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "2.8.8",
"react-svg-loader": "^3.0.3",
"sass": "^1.60.0",
"ts-jest": "^29.1.0",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@fortawesome/react-fontawesome": "~0.1.11",
"@mui/base": "5.0.0-alpha.98",
"@mui/material": "5.10.11",
"@mui/types": "7.2.0",
"@react-hook/resize-observer": "^1.2.4",
"@react-hook/window-size": "^3.0.7",
"@reduxjs/toolkit": "^1.6.2",
"@szhsin/react-menu": "3.5.2",
"graphviz-react": "^1.2.5",
"jquery": "^3.6.4",
"pyroscope-oss": "git+https://github.com/pyroscope-io/pyroscope.git#f710852",
"react": "^18.2.0",
"react-datepicker": "^4.7.0",
"react-debounce-input": "^3.2.5",
"react-dom": "^18.2.0",
"react-flatten-children": "^1.1.2",
"react-flot": "^1.3.0",
"react-helmet": "^6.1.0",
"react-notifications-component": "~3.1.0",
"react-outside-click-handler": "^1.3.0",
"react-pro-sidebar": "^0.7.1",
"react-redux": "^7.2.1",
"react-router-dom": "5.3.0",
"react-textarea-autosize": "8.3.0",
"zod": "^3.21.4"
}
}