-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.96 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
100
{
"name": "keen-react-dashboards",
"description": "React component of Keen dashboard builder",
"license": "MIT",
"version": "1.0.4",
"main": "dist/main.js",
"scripts": {
"start": "concurrently --kill-others \"NODE_ENV=development webpack-dev-server\"",
"build": "NODE_ENV=production webpack -p",
"preversion": "npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/keen/keen-react-dashboards.git"
},
"bugs": "https://github.com/keen/keen-react-dashboards/issues",
"author": "Keen.IO <[email protected]> (https://keen.io/)",
"contributors": [
"Dariusz Łacheta <[email protected]> (https://github.com/dariuszlacheta)"
],
"homepage": "https://keen.io",
"keywords": [
"React Charts",
"d3",
"c3",
"Analytics",
"Stats",
"Statistics",
"Visualization",
"Visualizations",
"Data Visualization",
"Chart",
"Charts",
"Charting",
"Svg",
"Dataviz",
"Plots",
"Graphs",
"Funnels"
],
"dependencies": {
"keen-dashboard-builder": "^1.1.5",
"prettier": "^1.18.2",
"prop-types": "^15.6.2",
"react": "^16.10.1",
"react-dom": "^16.10.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^8.2.0",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"concurrently": "^3.5.1",
"css-loader": "^1.0.0",
"cssnano": "^3.10.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"jest-environment-jsdom-c3": "^2.0.0",
"keen-analysis": "^3.4.0",
"nock": "^9.2.6",
"postcss": "^6.0.21",
"postcss-cli": "^5.0.0",
"postcss-color-function": "^4.0.1",
"postcss-css-variables": "^0.8.1",
"postcss-cssnext": "^2.4.0",
"postcss-import": "^8.0.2",
"postcss-loader": "^2.1.3",
"precss": "^3.1.2",
"regenerator-runtime": "^0.11.1",
"replace-in-file": "^3.4.0",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.1",
"xhr-mock": "^2.3.2"
}
}