forked from splunk/dashboard-conf19-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.03 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
{
"name": "dashboard-conf19-examples",
"version": "0.0.1",
"repository": "[email protected]:splunk/dashboard-conf19-examples.git",
"author": "dashboard team at Splunk <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run prepare_splunk && cross-env NODE_ENV=production webpack --config ./webpack.config.js --bail",
"package": "echo package",
"symlink": "node ./tools/symlink",
"prepare_splunk": "node ./tools/prepare",
"dev": "npm run prepare_splunk && npm run symlink && cross-env NODE_ENV=development webpack --config ./webpack.config.js --watch",
"lint": "cross-env eslint src"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@splunk/dashboard-context": "^8.0.3",
"@splunk/dashboard-core": "^8.0.3",
"@splunk/dashboard-presets": "^8.0.3",
"@splunk/dashboard-visualizations": "^9.2.1",
"@splunk/datasource-utils": "^8.0.3",
"@splunk/datasources": "^8.0.3",
"@splunk/react-page": "^2.1.1",
"@splunk/react-ui": "^2.13.1",
"@splunk/splunk-utils": "^1.2.2",
"chart.js": "^2.8.0",
"d3": "^5.12.0",
"react": "^16.9.0",
"react-chartjs-2": "^2.8.0",
"react-d3-library": "^1.1.8",
"react-dom": "^16.9.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.1",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"fs-extra": "^8.1.0",
"lodash.template": "^4.5.0",
"prettier": "^1.18.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
}
}