forked from NatelEnergy/grafana-plotly-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
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
{
"name": "natel-plotly-panel",
"version": "0.0.7-dev",
"description": "Plot.ly Panel Plugin for Grafana",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test": "jest --config jest.config.js",
"precommit": "pretty-quick --staged",
"lint": "tslint -c tslint.json --project tsconfig.json",
"format": "prettier-eslint --write \"src/**/*.{ts,tsx,json,css,js,jsx}\"",
"zip": "yarn build && rm -f ../grafana-plotly-panel.zip && zip -r ../grafana-plotly-panel.zip dist"
},
"author": "ryantxu",
"license": "MIT",
"keywords": [
"plotly",
"scatter",
"grafana",
"plugin",
"panel"
],
"repository": {
"type": "git",
"url": "https://github.com/NatelEnergy/grafana-plotly-panel.git"
},
"lint-staged": {
"src/**/*.{ts,tsx,json,css,js,jsx}": [
"prettier-eslint"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
},
"dependencies": {
"jquery": "^3.2.1",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"plotly.js": "^1.41",
"scriptjs": "^2.5.9"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.74",
"@types/plotly.js": "^1.38.0",
"@types/scriptjs": "^0.0.2",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^2.1.0",
"grafana-sdk-mocks": "github:grafana/grafana-sdk-mocks",
"jest": "^24.1.0",
"ng-annotate-webpack-plugin": "^0.3.0",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.0",
"prettier-eslint-cli": "^4.7.0",
"pretty-quick": "^1.10.0",
"release-it": "^10",
"replace-in-file-webpack-plugin": "^1.0.6",
"style-loader": "^0.23.1",
"ts-jest": "^23",
"ts-loader": "^5.3.3",
"typescript": "^3",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.9.1",
"webpack-cli": "^3.1"
}
}