forked from grafana/influxdb-flux-datasource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "grafana-flux-datasource",
"version": "1.0.0",
"description": "Grafana data source for InfluxDB (Flux query support)",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test": "jest --config jest.config.js"
},
"author": "Grafana Labs",
"license": "Apache",
"dependencies": {
"immutable": "^3.8.2",
"lodash": "^4.17.4",
"moment": "^2.22.1",
"papaparse": "^4.5.0",
"prismjs": "^1.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"slate": "^0.33.7",
"slate-plain-serializer": "^0.5.13",
"slate-react": "^0.12.4"
},
"devDependencies": {
"@types/grafana": "https://git@github.com/CorpGlory/types-grafana.git",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.74",
"@types/react": "^16.2.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"grafana-sdk-mocks": "github:grafana/grafana-sdk-mocks",
"jest": "^23.0.1",
"ng-annotate-webpack-plugin": "^0.3.0",
"style-loader": "^0.21.0",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4"
}
}