forked from Slach/grafana-flamegraph-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "flamegraph-panel",
"version": "0.6.0",
"description": "Flamegraph Panel Plugin for Grafana",
"main": "src/module.js",
"scripts": {
"build": "webpack --config build/webpack.prod.conf.js",
"dev": "webpack --config build/webpack.dev.conf.js"
},
"keywords": [
"flamegraph",
"grafana",
"plugin",
"panel"
],
"author": "samber",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-stage-0": "^7.0.0",
"@grafana/ui": "^6.3.2",
"babel-loader": ">=8.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": ">=3.0.0",
"loader-utils": ">=1.1.0",
"mini-css-extract-plugin": ">=0.8.0",
"node-sass": ">=4.12.0",
"style-loader": "^1.0.0",
"webpack": ">=4.40.2",
"webpack-cli": ">=3.3.9"
},
"dependencies": {
"d3": ">=5.12.0",
"d3-flame-graph": ">=2.1.2",
"lodash": ">=4.17.15"
}
}