forked from apexcharts/react-apexcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "react-apexcharts",
"version": "1.4.1",
"description": "React.js wrapper for ApexCharts",
"main": "dist/react-apexcharts.min.js",
"types": "types/react-apexcharts.d.ts",
"scripts": {
"build": "concurrently \"rollup -c rollup.config.js\" \"gulp\"",
"dev-build": "concurrently \"rollup -c rollup.config.js\" \"gulp devBuild\"",
"test": "jest"
},
"keywords": [
"react-charts",
"react",
"charts",
"graphs",
"apexcharts",
"data-visualization"
],
"author": {
"name": "Juned Chhipa",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/apexcharts/react-apexcharts/issues"
},
"license": "MIT",
"dependencies": {
"prop-types": "^15.8.1"
},
"peerDependencies": {
"apexcharts": "^3.42.0",
"react": ">=0.13"
},
"devDependencies": {
"@types/react": "^16.8.8",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"concurrently": "^4.1.0",
"eslint": "^5.14.1",
"eslint-plugin-react": "^7.12.4",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-react": "^3.1.0",
"gulp-uglify": "^3.0.0",
"jest": "^29.1.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"rollup": "1.27.14",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-uglify": "^3.0.0"
}
}